module Geocoder

def coordinates(address, options = {})


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