module Geocoder
def self.coordinates(address, options = {})
Look up the coordinates of the given street or IP address.
#
def self.coordinates(address, options = {}) if (results = search(address, options)).size > 0 results.first.coordinates end end
def self.coordinates(address, options = {}) if (results = search(address, options)).size > 0 results.first.coordinates end end