我正在使用 gmaps4rails 在我的应用程序中显示 gmaps.iam 获得正确的地图点但我无法区分我的地图中的当前位置和 nerby 位置。我的想法是对两个位置使用不同的标记我按照以下方式进行但它没有为我工作
我的控制器
def profile
@googlemaplocation=Location.find_by_id("#{params[:clinic_id]}")
@json1 = @googlemaplocation.to_gmaps4rails do |locations, marker|
marker.picture({
:picture => "http://www.google.com/mapfiles/dd-start.png",
:width => 32,
:height => 32
})
end
@neargooglemaplocation=@googlemaplocation.nearbys(10)
@json2= @neargooglemaplocation.to_gmaps4rails do |locations, marker|
marker.picture({
:picture => "http://www.google.com/mapfiles/dd-start.png",
:width => 32,
:height => 32
})
end
@json = (JSON.parse(@json1) + JSON.parse(@json2)).to_json
end
我的观点
<%= gmaps(:markers => { :data => @json } ) %>
如果我想在同一张地图上显示两个不同的标记怎么办
感谢和问候哈里·克里希纳