0

我向用户位置添加一个标记,如下所示:

Gmaps.map.callback = function() {
  Gmaps.map.createMarker({Lat: lat,
                          Lng: lng, 
                          rich_marker: null, 
                          marker_picture: ""
  });
}

,但我想更改标记的图像。丰富的标记似乎是解决方案,但我无法正确构建rich_marker。

谁能举一个丰富的标记构造的例子。

4

1 回答 1

0

你应该做:

Gmaps.map.callback = function() {
  Gmaps.map.rich_marker = true;
  Gmaps.map.createMarker({Lat: lat,
                      Lng: lng, 
                      rich_marker: your_custom_html, 
                      marker_picture: ""
  });
}
于 2012-07-21T22:21:43.227 回答