我有一个Rails 3.2.x应用程序,我正在使用gmaps4rails 2.0.0.pre
(是的,我知道它是旧版本)。我正在使用它来绘制gps视图/控制器中地图上的不同车辆(单位)。现在我正在尝试利用gmaps4rails
在不同的视图/控制器中显示地图,以在设施展示视图中显示建筑物(设施)位置。
在初始页面加载时,我在适当位置的地图上显示设施的标记。但是过了一会儿,标记会完全消失。我知道为什么会这样,但不知道如何修复它。
我有以下Coffeescript
,它会查找ID
#map
并调用/units
和/gps
路径来准备更新GPS视图/地图-realtime。
gps.js.coffee
$ ->
if $("#map").length > 0
setInterval (->
$.getScript "/units"
# Get all current locations, find each marker in the map, and update it's position
$.getJSON "/gps", (data) ->
$.each(data, (i, val) ->
marker = $.grep Gmaps.map.markers, (e) ->
e.id is val.id
marker[0].setPosition(val.lat, val.lng) if marker[0]?
)
), 5000
$('.marker-link').on 'click', ->
id = $(this).data("marker-id")
marker = $.grep Gmaps.map.markers, (e) ->
e.id is id
marker[0].showInfowindow() if marker[0]?
所以问题是gmaps4rails地图的默认ID
是#map
。我正在尝试弄清楚如何使用带有不同ID
的插件创建新地图,以便我可以显示设施位置而不是调用coffeescript进行刷新。
这是我的设施模型/视图/控制器的样子。一切正常,但由于咖啡脚本调用#map
,标记消失了。我不想失去这个coffeescript功能,因为它正确地用标记更新了我的gps show视图。我想找出一种方法来生成gmaps4rails地图并更改ID
。
facility.rb
acts_as_gmappable process_geocoding: false
facilities_controller
def show
@facility = Facility.find(params[:id])
@marker = @facility.to_gmaps4rails do |facility, marker|
#marker.infowindow render_to_string(partial: "unit_infowindow", locals: {unit: unit})
marker.json({id: facility.id})
end
respond_to do |format|
format.html # index.html.erb
format.json { render json: @marker }
end
end
设施show.html.erb
<div class="well">
<%= gmaps(markers: {data: @marker, options: {rich_marker: true, "auto_zoom" => false}}) %>
</div>
有没有办法生成gmaps4rails地图,并覆盖ID
的默认#map
,这样我就可以让标记消失并继续在我的GPS视图中使用我的coffeescript?
如果有人有任何建议,请告诉我。我将不胜感激。
如果我的问题令人困惑或需要更多解释,我将很乐意对其进行更新。
答案 0 :(得分:1)
我想我已经找到了如何覆盖ID
中#map
的{{1}}。
通过将gmaps4rails
设置为:map_options
ID
我的coffeesript不会触发此视图,并且标记保持静态,如我所愿。
facility_map
如果你们有更好的方法,请告诉我。但到目前为止,这似乎对我有用。