Google map getting “initMap is not a function” in chrome browser only

风格不统一 提交于 2019-12-24 06:37:43

问题


Google map getting "initMap is not a function" in chrome browser only.

In other browsers (Firefox, IE, etc ) are working fine.

I am using the Google MAP API for location search and autocomplete location.

The similar question answers I had tried. (https://stackoverflow.com/questions/46319676/initmap-is-not-a-function-in-using-google-maps-api),(https://stackoverflow.com/questions/40448238/initmap-is-not-a-function) Not working yet in Chrome.

Here is the code.

<script>function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
    center: { lat: 34.397, lng: 150.644 },
    scrollwheel: false,
    zoom: 2
});
}    
</script>

<script async defer
            src="https://maps.googleapis.com/maps/api/js?key={{KEY}}&callback=initMap">
    </script>
<div>
  <div id="map" style="width: 500px; height: 400px;"></div>
</div>

回答1:


The script should be on the below section. It can't find the "map" div hence creates a problem that leads to "initMap is not a function" problem.

<html>
<head></head>
<body>
<div>
  <div id="map" style="width: 500px; height: 400px;"></div>
</div>

<script>
    // scripts goes here
</script>
<script async defer
            src="https://maps.googleapis.com/maps/api/js?key={{KEY}}&callback=initMap">
    </script>
</body>
</html>



回答2:


use this

<script
src="http://maps.googleapis.com/maps/api/js?v=3&amp;sensor=false"></script>
$(document).ready(function() {
    ...
    google.maps.event.addDomListener(window, 'load', initMap);
});


来源:https://stackoverflow.com/questions/57389696/google-map-getting-initmap-is-not-a-function-in-chrome-browser-only

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!