Answers for "add google map html"

0

how to add google map in html

<div id="googleMap" style="width:100%;height:400px;"></div>

<script>
function myMap() {
var mapProp= {
  center:new google.maps.LatLng(51.508742,-0.120850),
  zoom:5,
};
var map = new google.maps.Map(document.getElementById("googleMap"),mapProp);
}
</script>

<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_KEY&callback=myMap"></script>
Posted by: Guest on February-19-2022
0

how to show google map in html

There's ma how-to here: https://developers.google.com/maps/documentation/javascript/adding-a-google-map#maps_add_map-html
Posted by: Guest on March-28-2022

Browse Popular Code Answers by Language