gpt4 book ai didi

google-maps - initMap 不是函数

转载 作者:行者123 更新时间:2023-12-02 08:17:39 26 4
gpt4 key购买 nike

我不明白是什么问题?我在 Google Map APIs 中使用了这个例子:Simple Map

<body>
<!-- Map Section -->
<section id="map"></section>

<script src="js/jquery.min.js"></script>
<script src="js/main.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB5Y8CqFe-4Egzl5TlPqlFvjRGcuCfHGvY&callback=initMap" async defer></script>

</body>

main.js:

//--------------------------------------------------
// Contact Map
//--------------------------------------------------
function initMap() {
if ($("#map").length > 0)
{
var map;
map = new google.maps.Map(document.getElementById('map'),{
center: {lat: 44.4297538, lng: 26.0649221},
zoom: 16,
scrollwheel: false,
zoomControl: false,
panControl: false,
streetViewControl: false,
mapTypeControl: false,
overviewMapControl: false,
clickable: false
});

}
}

错误:

message: "initMap is not a function"

name: "InvalidValueError"

最佳答案

遇到同样的问题,我个人删除了 callback=initMap 以使其正常工作。其他线程接缝表明 initMap 是您应该自己构建的函数。

关于google-maps - initMap 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40448238/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com