我正在尝试在 Google Maps 版本 3 中使用 MVC 对象。我似乎无法弄清楚为什么我的zoom_changed
方法只被调用一次。当我第一次加载地图时,zoom_changed
会调用该方法。但不是当我放大地图时。
function MarkerWidget (options) {
this.setValues(options);
this.set('zoom', this.map.zoom);
var marker = new google.maps.Marker({
icon : this.icon,
mouseOverIcon : this.mouseOverIcon,
orgIcon : this.orgIcon
});
marker.bindTo('map', this);
marker.bindTo('position', this);
google.maps.event.addListener(marker, 'mouseover', this.onmouseover);
google.maps.event.addListener(marker, 'mouseout', this.onmouseout);
}
MarkerWidget.prototype = new google.maps.MVCObject();
MarkerWidget.prototype.zoom_changed = function () {
$.log(this, new Date());
}
地图对象不应该触发缩放事件并通知所有具有“this.set('zoom', this.map.zoom)”的对象吗?