我一直在尝试自定义使用gmaps4rails运行,并且我将代码设置为在地图上显示我的json坐标字符串,并且用户IS的中心工作,我可以从家里放大我的位置,工作和我的手机。一旦获得许可,我就无法让js在地图上显示“我在这里”按钮。
这是我用于gmaps4rails地图的代码:
<%= gmaps(:map_options => {:detect_location => true, :center_on_user => true, :auto_zoom => false, :zoom => 12, :auto_adjust => true}, :markers => {:data => @json} ) %>
感谢您的帮助!
编辑12月6日回答:
我正在添加回调代码,如下所示:
<script type="text/javascript" charset="utf-8">
Gmaps.map.callback = function() {
Gmaps.map.createMarker({Lat: Gmaps.map.userLocation.lat(),
Lng: Gmaps.map.userLocation.lng(),
rich_marker: null,
marker_picture: "http://gmaps-utility-library.googlecode.com/svn/trunk/markerclusterer/1.0/images/heart30.png"
})
}
</script>
仍未在地图上得到回复。这是我的js编码的问题吗?我还不是职业选手。
谢谢!
答案 0 :(得分:2)
你可以这样做:
Gmaps.map.createMarker({Lat: Gmaps.map.userLocation.lat(),
Lng: Gmaps.map.userLocation.lng(),
rich_marker: null,
marker_picture: ""
})
回调中的。
请注意,您可以传递所需标记的网址。
顺便说一下,如果你认为这是一个有用的功能,你应该在github上创建一个问题。