module Geocoder::Store::Base

def to_coordinates


Coordinates [lat,lon] of the object.
#
def to_coordinates
  [:latitude, :longitude].map{ |i| send self.class.geocoder_options[i] }
end