作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Google map 仅在 Chrome 浏览器中出现“initMap 不是函数”。
在其他浏览器(Firefox、IE 等)中工作正常。
我正在使用 Google MAP API 进行位置搜索和自动完成位置。
我试过类似的问题答案。 ( 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)尚无法在 Chrome 中使用。
这是代码。
<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>
最佳答案
脚本应该在下面的部分。它找不到“ map ”div,因此会产生导致“initMap 不是函数”问题的问题。
<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>
关于javascript - 谷歌地图仅在 chrome 浏览器中获取 "initMap is not a function",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57389696/
我是一名优秀的程序员,十分优秀!