我想要将zoom_changed AddListner添加到我的地图中,但它不起作用.Any one帮助我解决此问题谢谢Advance.My代码是
GEvent.addListener(map, "zoom_changed", function() {
alert("You before Zoomed the map.");
map.setCenter(new GLatLng(17.971599, 77.594563), 10);
alert("You After Zoomed the map.");
}对于click而不是zoom_changed,它工作得很好。
发布于 2012-04-04 14:06:02
如果您使用的是google maps v2,则不能使用zoom_changed,而应尝试使用zoomend。
GEvent.addListener(map, "zoomend", function() {
alert("You before Zoomed the map.");
map.setCenter(new GLatLng(17.971599, 77.594563), 10);
alert("You After Zoomed the map.");
}https://stackoverflow.com/questions/6857062
复制相似问题