谷歌地图中的自定义标记图标会在动画之前弹出

时间:2013-02-15 10:17:52

标签: google-maps-api-3 google-maps-markers

我有以下代码将标记添加到我的地图中:

var marker = new google.maps.Marker({
    icon: '/pin.png',
    map: map,
    position: latlng,
    draggable: false,
    title: trip_name,
    animation: google.maps.Animation.DROP
});

除了在运行动画之前弹出一瞬间图标外,一切正常。还有其他人遇到过这个问题吗?

1 个答案:

答案 0 :(得分:4)

我遇到了同样的行为,我发现进一步定义自定义图标有助于解决此问题。

var image = {
    url: 'images/map_marker.png',
    // This marker is 20 pixels wide by 30 pixels tall.
    size: new google.maps.Size(20, 30),
    // The origin for this image is 0,0.
    origin: new google.maps.Point(0,0),
    // The anchor for this image is the base of the image at 0,30.
    anchor: new google.maps.Point(10, 30)
};

var marker = new google.maps.Marker({
   icon: image,
   map: map,
   position: latlng,
   draggable: false,
   title: trip_name,
   animation: google.maps.Animation.DROP
});