gpt4 book ai didi

javascript - 在 FF14 中使用 GMAP3 时为 "google.maps.MapTypeId is undefined"

转载 作者:行者123 更新时间:2023-11-29 14:59:39 26 4
gpt4 key购买 nike

测试来自 gmap3 的示例代码:

<html>    
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://maps.google.com/maps/api/js?sensor=false&language=zh" type="text/javascript"></script>
<script type="text/javascript" src="js/gmap3.js"></script>
<style>
.gmap3{
margin: 20px auto;
border: 1px dashed #C0C0C0;
width: 500px;
height: 250px;
}
</style>
<script type="text/javascript">
$(function(){
try{
$('#geoTestDiv').gmap3(
{ action: 'addMarker',
latLng : [46.578498,2.457275],
map:{
center: true,
zoom: 14,
mapTypeId: google.maps.MapTypeId.TERRAIN
}
}
);
}catch(exception){
alert(exception);
}
});
</script>
<body>
<div id="geoTestDiv" class="gmap3"></div>
</body>
</html>

在 FF 14.0.1 上,它发出警报:

TypeError: google.maps.MapTypeId is undefined

在 Chrome 16.0.889.0 上,显示带有图像的 div。

为什么会有这样的差异?

最佳答案

您可以尝试命名初始化 map 的函数,然后将其作为回调放在加载 Google Maps api 的链接中。

像这样:

<script src="http://maps.google.com/maps/api/js?sensor=false&language=zh&callback=initMainMap" type="text/javascript"></script>

<script type="text/javascript">
function initMainMap(){
//function body
}
</script>

此处的原始答案:Google Maps API v3 - TypeError... https://stackoverflow.com/a/8361021/1266136

关于javascript - 在 FF14 中使用 GMAP3 时为 "google.maps.MapTypeId is undefined",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11972331/

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