module Geocoder

def coordinates(address)


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