поле ‘distance’ удаляется при использовании Geokit с acts_as_mappable:через

#ruby-on-rails #geokit

#ruby-on-rails #geokit

Вопрос:

Мы знаем, что поле distance удаляется при использовании Geokit gem в Rails с acts_as_mappable:через класс модели. Интересно, есть ли способ обойти это, чтобы вернуть поле distance обратно. Я попытался следовать приведенному здесь примеру с исправлением ошибок: http://www.sobyteme.com/news/2010/05/13/computers/2010/06/25/geokit-acts_as_mappable-through-with-distance-attribute/ но у меня это не сработало.

Комментарии:

1. Я предлагаю вам взглянуть на драгоценный камень gmaps4rails.

2. К сожалению, драгоценный камень gmaps4rails не имеет никакого отношения к вопросу, который я опубликовал. Они действительно не связаны.

3. извините, я думал, что act_as_mappable создал карту

Ответ №1:

Что ж, предложение Стива на его сайте было точным, мне не хватало вызова sort_by_distance_from после выполнения find. Так что заслуга в этом ответе принадлежит ему.

Я на Rails версии v3.0.7. Вот мой код:

 class Office < ActiveRecord::Base
    has_many :users
    acts_as_mappable :default_units => :miles, 
                     :default_formula => :sphere, 
                     :lat_column_name => :latitude,
                     :lng_column_name => :longitude
end

class User < ActiveRecord::Base
    belongs_to  :office
    acts_as_mappable :through => :office
end
  

users_controller.rb:

 # Monkey patching to include the 'distance' attribute
module Geokit
  module Mappable
    def to_lat_lng
      return self if instance_of?(Geokit::LatLng) || instance_of?(Geokit::GeoLoc)
      return LatLng.new(self.office.send(self.office.class.lat_column_name),
        self.office.send(self.office.class.lng_column_name)) if self.class.respond_to?(:acts_as_mappable)
      nil
    end
  end 
end

class UsersController < ApplicationController

  def location
    @lat = params[:lat].to_f
    @long = params[:long].to_f
    @origin = [@lat, @long]
    @users = User.find(:all, 
         :origin => @origin,
         :conditions => "distance < 3")

    # We have to add this to get the 'distance' field
    @users.sort_by_distance_from(@origin)

    respond_to do |format|
      format.html
      format.xml  { render :xml => @users.to_xml(:methods => :distance)}
      format.json  { render :json => @users.to_json(:methods => :distance)}
    end
  end 
...
end