Answers for "google maps css"

0

google maps css

<!-- CSS is the styling language for HTML, so here is the HTML code -->
<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="[Google API link goes here]"></script>
Posted by: Guest on July-12-2021

Browse Popular Code Answers by Language