0
請讓我知道如何將定製的谷歌地圖標記移動到經度和緯度點以上?在緯度和經度上移動定製的谷歌地圖標記
這裏是JSBIN:Link,在這裏我已經使用了三個對象數組,就用這個鏈接低調的編碼結構,
請讓我知道我必須插入「錨」來定位定製的圖標?
請讓我知道如何將定製的谷歌地圖標記移動到經度和緯度點以上?在緯度和經度上移動定製的谷歌地圖標記
這裏是JSBIN:Link,在這裏我已經使用了三個對象數組,就用這個鏈接低調的編碼結構,
請讓我知道我必須插入「錨」來定位定製的圖標?
您可以使用icon object的anchor
屬性,併爲標記圖像添加所需的任何偏移量。
var iconObj = {
url: '/path/to/icon.png', //path to icon image
origin: new google.maps.Point(0, 0), //position of the image within a sprite
anchor: new google.maps.Point(25, 25), //position at which to anchor an icon in correspondance to the position of the marker
};
var markerObj = new google.maps.Marker({
position: point,
map: map,
icon: iconObj
});
更新:
要回答你的第二個問題,「我在哪裏把這個正是我的代碼」 - 你應該把圖標作爲對象drivers
數組而不是字符串。