1
google.maps.event.addListener(google_map, 'zoom_changed', function() {
var z = google_map.getZoom();

_.each(map_shapes, function(s) {

    if (! $.isFunction(s.shape.getPosition)) return;

    var w = s.shape.getIcon().size.width;
    var h = s.shape.getIcon().size.height;

    s.shape.setIcon(new google.maps.MarkerImage(
        s.shape.getIcon().url, null, null, null, new google.maps.Size(
            w - Math.round(w / 3 * (last_zoom - z)),
            h - Math.round(h / 3 * (last_zoom - z)))
        )
    );

});

last_zoom = z;
});

当有人放大和缩小时,我正在使用此代码调整我的标记大小,但它会使图标在你缩小时变大,在你放大时变小。我想要相反的结果。

我正在使用谷歌地图 API 3。

我尝试了几种不同的组合,但似乎无法让它发挥作用。

4

0 回答 0