0
我已經看到很多用於動態生成標記圖標上的數字的示例。 其中一個我發現是谷歌圖表apis。 This部分解決了我的問題。編輯我的代碼後,我能夠生成數字,如下所示。
但是可以添加一個像這樣的自定義圖標http://s7.postimage.org/wg6bu3jpj/pointer.png,然後通過它生成數字?用於Google地圖的動態編號的自定義圖標標記
function addMarker(id,location,address,facility,name,ratings)
{
marker = new google.maps.Marker(
{
position: location,
map: map,
animation: google.maps.Animation.DROP,
icon: 'https://chart.googleapis.com/chart?chst=d_map_pin_letter&chld='+id+'|FF776B|000000',
shadow:'https://chart.googleapis.com/chart?chst=d_map_pin_shadow'
});