我已经看到了许多在标记图标上动态生成数字的示例。我发现其中之一是 google chart apis。这部分解决了我的问题。编辑我的代码后,我能够生成数字,如下所示。
但是是否可以添加这样的自定义图标
,然后在其上生成数字?
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'
});