1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
require "geocoder/lookups/nominatim"
require "geocoder/results/pickpoint"
module Geocoder::Lookup
class Pickpoint < Nominatim
def name
"Pickpoint"
end
def supported_protocols
[:https]
end
def required_api_key_parts
["api_key"]
end
private # ----------------------------------------------------------------
def base_query_url(query)
method = query.reverse_geocode? ? "reverse" : "forward"
"#{protocol}://api.pickpoint.io/v1/#{method}?"
end
def query_url_params(query)
params = {
key: configuration.api_key
}.merge(super)
end
def results(query)
return [] unless doc = fetch_data(query)
if !doc.is_a?(Array) && doc['message'] == 'Unauthorized'
raise_error(Geocoder::InvalidApiKey, 'Unauthorized')
end
doc.is_a?(Array) ? doc : [doc]
end
end
end
|