Google Map Script
Check Latitude & Longitude with zoom on live
<div id="map-aux" style="height: 440px; width: 100%;"></div>
<script>
function initMap() {
 var map2 = new google.maps.Map(document.
   zoom: 6,
   center: {lat: 40.528106, lng:-3.65319}
 });
 var marker2 = new google.maps.Marker({
         position: {lat: 40.528106, lng:-3.65319},
         map: map2
       });
 var geocoder2 = new google.maps.Geocoder;
<!--if u dont need to display address on map | remove this | iff needed then change address and link-->
var infowindow2 = new google.maps.InfoWindow({
     content: '<span style="color:#111;">Auxilium Mortgage Corporation, 307 Goldstream Ave, Victoria, BC </span><a href="https://www.google.ca/
 });
<!-- Till here-->
 infowindow2.open(map2,
 google.maps.event.
       infowindow2.open(map2,
 });
}
initMap();
</script>
 
Comments
Post a Comment