以下是旋轉標記的代碼,但是如何旋轉自定義標記。任何想法?如何在Google地圖中旋轉標記?
var angleDegrees = 150;
new google.maps.Marker({
position: a,
map: map,
icon: {
path: google.maps.SymbolPath.FORWARD_CLOSED_ARROW,
scale: 6,
fillColor: "red",
fillOpacity: 0.8,
strokeWeight: 2,
rotation: angleDegrees //this is how to rotate the pointer
}
});
謝謝,我發現這個**符號的路徑,這是一個使用SVG路徑符號表示內置符號路徑,或自定義路徑。** – sms247
準確地說,所以你可以添加自己的SVG使用它的符號。 HEre是所需語法的一個例子。 http://stackoverflow.com/questions/13125289/how-do-i-indicate-transparency-in-an-svg-path-in-google-maps-api-v3 –
是否有其他方法我們可以旋轉任何自定義圖片?在上面的例子中,您可以編寫自定義圖像的url:'path',但不旋轉。 – AndroidLearner