Gmaps4rails:如何在javascript中创建丰富的标记?

时间:2012-07-13 13:40:22

标签: javascript gmaps4rails

我将标记添加到用户位置,如下所示:

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

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

任何人都可以举一个丰富的标记构建的例子。

1 个答案:

答案 0 :(得分:0)

你应该这样做:

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