我的部分代码看起来像这样,我可以使用
map.setCenter(myLatlng);
但在那之后我试图放大地图
marker_id = id;
marker_id = new google.maps.Marker();
marker_id.setIcon(image);
myLatlng = new google.maps.LatLng(loctionupdateobj[id].lat, loctionupdateobj[id].lang);
marker_id.setPosition(myLatlng);
marker_id.setMap(map);
map.setCenter(myLatlng);
alert(map.getZoom());
map.setZoom(10);
alert("game again " + map.getZoom())
你可以看到
alert("game again " + map.getZoom())
在代码中它给了我一个警报,game again 10
但缩放级别永远不会10
。
但是第一个警报是4
(我在初始化期间设置的)。
因为我做不到setZoom
,所以每次添加新标记时,我都会创建一个新的地图实例。