class Geocoder::Result::Base
def address(format = :full)
A string in the given format.
#
def address(format = :full) fail end
def coordinates
A two-element array: [lat, lon].
#
def coordinates [@data['latitude'].to_f, @data['longitude'].to_f] end
def country
def country fail end
def country_code
def country_code fail end
def initialize(data)
Takes a hash of result data from a parsed Google result document.
#
def initialize(data) @data = data end
def latitude
def latitude coordinates[0] end
def longitude
def longitude coordinates[1] end