Skip to content
Snippets Groups Projects
mapbox.rb 936 B
Newer Older
Andy Mention's avatar
Andy Mention committed
require 'geocoder/results/base'

module Geocoder::Result
  class Mapbox < Base

    def coordinates
sputnik82's avatar
sputnik82 committed
      data['geometry']['coordinates'].reverse.map(&:to_f)
      data['text']
Andy Mention's avatar
Andy Mention committed
    end

    def street
      data['properties']['address']
sputnik82's avatar
sputnik82 committed
      context_part('place')
Andy Mention's avatar
Andy Mention committed
    end

    def state
sputnik82's avatar
sputnik82 committed
      context_part('region')
Andy Mention's avatar
Andy Mention committed
    end

    alias_method :state_code, :state

    def postal_code
sputnik82's avatar
sputnik82 committed
      context_part('postcode')
Andy Mention's avatar
Andy Mention committed
    end

    def country
sputnik82's avatar
sputnik82 committed
      context_part('country')
    alias_method :country_code, :country
    def neighborhood
sputnik82's avatar
sputnik82 committed
      context_part('neighborhood')
Andy Mention's avatar
Andy Mention committed
    end

    def address
sputnik82's avatar
sputnik82 committed
      [place_name, street, city, state, postal_code, country].compact.join(', ')
Andy Mention's avatar
Andy Mention committed
    end
sputnik82's avatar
sputnik82 committed

    private

sputnik82's avatar
sputnik82 committed
    def context_part(name)
      context.map { |c| c['text'] if c['id'] =~ Regexp.new(name) }.compact.first
    end

sputnik82's avatar
sputnik82 committed
    def context
sputnik82's avatar
sputnik82 committed
    end