I've just finished watching RailsCasts #273 on the Geocoder gem. It looks like a really powerful/flexible gem and I want to integrate it into my app but I'm a little bit confused about reverse geocoding. I know that you can provide something like:

class Skatepark < ActiveRecord::Base
  reverse_geocoded_by :latitude, :longitude
  after_validation :fetch_address
  ...
end

This will reverse geocode the coordinates and then populate :address w/ the formatted_address returned by the geocoder. The problem is that I don't have (or want) an :address attribute. I have :street, :locality, :region, :country, and :postal_code attributes that need to be populated w/ the corresponding values returned by Geocoder. How do I go about doing this using the Geocoder gem?

link|improve this question

70% accept rate
feedback

1 Answer

up vote 3 down vote accepted

I don't know your model but this is how you populate it. It's also documented in the page you referred to.

class Skatepark < ActiveRecord::Base
  reverse_geocoded_by :latitude, :longitude do |obj, results|
    if geo = results.first
      # populate your model
      obj.city    = geo.city
      obj.zipcode = geo.postal_code
      obj.country = geo.country_code
    end
  end
  after_validation :fetch_address
  ...
end
link|improve this answer
Don't know how I didn't see that. Thanks for the help! – Kyle Decot Jul 4 '11 at 21:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.