Google Maps API problem – initMap()

This part of the Google Maps script URL is the culprit: &callback=initMap It means that when the script is loaded it will attempt to run the initMap() function, but you’re enqueueing your script that contains the function in the footer, after the Google Maps <script> tag, which you’re outputting in the middle of the page. … Read more

google map API zoom range

Available Zoom Levels Zoom level 0 is the most zoomed out zoom level available and each integer step in zoom level halves the X and Y extents of the view and doubles the linear resolution. Google Maps was built on a 256×256 pixel tile system where zoom level 0 was a 256×256 pixel image of … Read more

ReferenceError: google is not defined

Owing to the fact that my website uses https for the connection, I can not use http://maps.google.com/maps/api/js?sensor=false. When I debug the whole page, this link says: Warning : The page index.html ran insecure content. so I made another search on google and came across to this question. so what basically causes a problem is not using https link in the … Read more