module Geocoder

def self.address(query, options = {})


or IP address (string).
Look up the address of the given coordinates ([lat,lon])
#
def self.address(query, options = {})
  if (results = search(query, options)).size > 0
    results.first.address
  end
end