0

在现场使用 gmaps4rails 进行地图功能:

这个想法是在地图上显示房子的标记加上多个景点。

我有这个代码;

控制器:

@house = House.friendly.find(params[:id])
@location = @house.location
@sights_markers = Location.where("category = 'sights'")

records = [@location, @sights_markers].compact

@hash = Gmaps4rails.build_markers(records) do |location, marker|
  marker.lat location.latitude
  marker.lng location.longitude

end

看法:

<div id="map" style='width: 100%; height: 500px; margin-top: 10px; margin-bottom: 20px;' ></div>

<script type=text/javascript> 

    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>

我收到一条错误消息..没有找到“纬度”的方法

我究竟做错了什么?

4

1 回答 1

1

关键是要有一个数组。所以,替换:

records = [@location, @sights_markers].compact

records = @sights_markers.to_a + [@location]
于 2014-09-29T17:49:55.327 回答