Class: Geocoder::Result::Mapbox

Inherits:
Base
  • Object
show all
Defined in:
lib/geocoder/results/mapbox.rb

Instance Attribute Summary

Attributes inherited from Base

#cache_hit, #data

Instance Method Summary collapse

Methods inherited from Base

#initialize, #latitude, #longitude, #province, #province_code

Constructor Details

This class inherits a constructor from Geocoder::Result::Base

Instance Method Details

#addressObject



42
43
44
# File 'lib/geocoder/results/mapbox.rb', line 42

def address
  [place_name, street, city, state, postal_code, country].compact.join(', ')
end

#cityObject



18
19
20
# File 'lib/geocoder/results/mapbox.rb', line 18

def city
  context_part('place')
end

#coordinatesObject



6
7
8
# File 'lib/geocoder/results/mapbox.rb', line 6

def coordinates
  data['geometry']['coordinates'].reverse.map(&:to_f)
end

#countryObject Also known as: country_code



32
33
34
# File 'lib/geocoder/results/mapbox.rb', line 32

def country
  context_part('country')
end

#neighborhoodObject



38
39
40
# File 'lib/geocoder/results/mapbox.rb', line 38

def neighborhood
  context_part('neighborhood')
end

#place_nameObject



10
11
12
# File 'lib/geocoder/results/mapbox.rb', line 10

def place_name
  data['text']
end

#postal_codeObject



28
29
30
# File 'lib/geocoder/results/mapbox.rb', line 28

def postal_code
  context_part('postcode')
end

#stateObject Also known as: state_code



22
23
24
# File 'lib/geocoder/results/mapbox.rb', line 22

def state
  context_part('region')
end

#streetObject



14
15
16
# File 'lib/geocoder/results/mapbox.rb', line 14

def street
  data['properties']['address']
end