我正在使用Gmaps4rails gem
,这是我的设置:
def show
@items = Item.find(params[:id])
@hash = Gmaps4rails.build_markers(@items) do |item, marker|
marker.lat item.latitude
marker.lng item.longitude
marker.picture({
:url => "http://maps.google.com/mapfiles/arrow.png",
:width => 32,
:height => 32
})
end
append_cur_location
end
def append_cur_location
@hash << { :lat=>action[0], :lng=>action[1]}
end
def action
@lat_lng = cookies[:lat_lng].split("|")
end
我从 and 获取当前位置和从andaction method
获取item
位置。item.latitude
item.longitude
意见/项目/show.html.erb
<div style='width: 800px;'>
<div id="map" style='width: 800px; height: 400px;'></div>
</div>
<script>
handler = Gmaps.build('Google');
handler.buildMap({ provider: {}, internal: {id: 'map'}}, function(){
markers = handler.addMarkers(<%=raw @hash.to_json %>);
handler.bounds.extendWith(markers);
handler.fitMapToBounds();
});
</script>
通过上述设置,我得到了显示当前位置和项目位置的地图。此外,我还能够更改项目位置标记。但我不知道如何更改当前位置标记并将信息框添加到项目位置。任何想法如何实施这些更改?