gpt4 book ai didi

javascript - 无效值错误 : setCenter : not a LatLng or LatLngLiteral Object

转载 作者:行者123 更新时间:2023-11-29 18:16:21 29 4
gpt4 key购买 nike

我是 google map api v3 的新手。我已经建立了一个带有 2 个标记的像样的谷歌地图,但是当我使用 google.maps.latlngBounds 时,它返回给我一个错误

invalidValueError:setCenter:不是 LatLng 或 LatLngLiteral 对象

我该如何解决这个问题?我只想让我的 map 围绕这些标记居中。

function initialize() {

var myLatlng = new google.maps.LatLng(-25.363882,131.044922);
var myLatlng2 = new google.maps.LatLng(-25.573688, 132.567212);

var mapOptions = {
center: myLatlng,
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP
};

try {
var map = new google.maps.Map(document.getElementById("map-canvas"),
mapOptions);

var marker = new google.maps.Marker({
position: myLatlng
});

var marker2 = new google.maps.Marker({
position: myLatlng2
});

trackerMarkerArray.push(marker);
trackerMarkerArray.push(marker2);

var latlngbound = new google.maps.LatLngBounds ();
for (var i = 0; i<trackerMarkerArray.length; i++){
trackerMarkerArray[i].setMap(map);

latlngbound.extend(trackerMarkerArray[i].position);
}




//render new map and center around group of marker
map.setCenter(latlngbound);
map.fitBounds(latlngbound);


} catch (err){
alert(err);
}


}
google.maps.event.addDomListener(window, 'load', initialize);

最佳答案

将 map “拟合”到添加到 google.maps.LatLngBounds 的一组标记对象使用 map.fitBounds(bounds),而不是 map.setCenter()。

google.maps.Map documentation

关于javascript - 无效值错误 : setCenter : not a LatLng or LatLngLiteral Object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23003104/

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