我在地圖上的自定義圖像有問題。如何在Google地圖自定義圖標中添加圓形形狀?
例如: 我的圖標,以這種方式產生,並且圖標包含圖像:
var ic = { //icon
url: icon, // url
scaledSize: new google.maps.Size(30, 30), // scaled size
origin: new google.maps.Point(0,0), // origin
anchor: new google.maps.Point(0, 0), // anchor
//define the shape
//define the shape
shape:{coords:[17,17,18],type:'circle'},
//set optimized to false otherwise the marker will be rendered via canvas
//and is not accessible via CSS
optimized:false,
title: 'spot'
};
var marker = new google.maps.Marker({
map: map, title: name , position: latlngset, icon: ic
});
我想使我的圖標,如CSS 50%半徑(圓形)。 我該怎麼做?
,謝謝,我有錯 - 我嘗試添加類爲圖標,不進標記。 –