Zoom_changed - 中心

时间:2011-07-28 09:52:37

标签: javascript

我想将zoom_changed AddListner添加到我的地图中,但它无法正常工作。任何人都可以帮我解决这个问题,谢谢你。我的代码是

 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。

1 个答案:

答案 0 :(得分:0)

如果您使用的是谷歌地图api 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.");
}