Module: Geocoder::Store::MongoBase

Included in:
MongoMapper, Mongoid
Defined in:
lib/geocoder/stores/mongo_base.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included_by_model(base) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
# File 'lib/geocoder/stores/mongo_base.rb', line 4

def self.included_by_model(base)
  base.class_eval do

    scope :geocoded, lambda {
      where(geocoder_options[:coordinates].ne => nil)
    }

    scope :not_geocoded, lambda {
      where(geocoder_options[:coordinates] => nil)
    }
  end
end

Instance Method Details

#geocodeObject

Look up coordinates and assign to latitude and longitude attributes (or other as specified in geocoded_by). Returns coordinates (array).



31
32
33
34
35
36
37
38
39
40
# File 'lib/geocoder/stores/mongo_base.rb', line 31

def geocode
  do_lookup(false) do |o,rs|
    if r = rs.first
      unless r.coordinates.nil?
        o.__send__ "#{self.class.geocoder_options[:coordinates]}=", r.coordinates.reverse
      end
      r.coordinates
    end
  end
end

#reverse_geocodeObject

Look up address and assign to address attribute (or other as specified in reverse_geocoded_by). Returns address (string).



46
47
48
49
50
51
52
53
54
55
# File 'lib/geocoder/stores/mongo_base.rb', line 46

def reverse_geocode
  do_lookup(true) do |o,rs|
    if r = rs.first
      unless r.address.nil?
        o.__send__ "#{self.class.geocoder_options[:fetched_address]}=", r.address
      end
      r.address
    end
  end
end

#to_coordinatesObject

Coordinates [lat,lon] of the object. This method always returns coordinates in lat,lon order, even though internally they are stored in the opposite order.



22
23
24
25
# File 'lib/geocoder/stores/mongo_base.rb', line 22

def to_coordinates
  coords = send(self.class.geocoder_options[:coordinates])
  coords.is_a?(Array) ? coords.reverse : []
end