1

我正在使用 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 } ) %>

如果我想在同一张地图上显示两个不同的标记怎么办

感谢和问候哈里·克里希纳

4

1 回答 1

1

正如apneadiving 所说,您可以使用不同的图像。例如 :

def profile

   @googlemaplocation=Location.find_by_id("#{params[:clinic_id]}")

    @json1 = @googlemaplocation.to_gmaps4rails do |locations, marker|

  marker.picture({
                  :picture => "http://www.google.com/intl/en_us/mapfiles/ms/micons/red-dot.png",
                  :width   => 32,
                  :height  => 32
                 })
  end

    @neargooglemaplocation=@googlemaplocation.nearbys(10)
    @json2= @neargooglemaplocation.to_gmaps4rails do |locations, marker|

  marker.picture({
                  :picture => "http://www.google.com/intl/en_us/mapfiles/ms/micons/blue-dot.png",
                  :width   => 32,
                  :height  => 32
                 })
  end

    @json = (JSON.parse(@json1) + JSON.parse(@json2)).to_json

  end

顺便说一句:谢谢,我正在寻找一种在我的应用程序中为附近位置添加标记的方法:)

问候。

于 2013-03-13T14:12:01.237 回答