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 42 43 44 45 46 47 48 49 50
|
require 'geocoder/lookups/nominatim'
require "geocoder/results/location_iq"
module Geocoder::Lookup
class LocationIq < Nominatim
def name
"LocationIq"
end
def required_api_key_parts
["api_key"]
end
private # ----------------------------------------------------------------
def base_query_url(query)
method = query.reverse_geocode? ? "reverse" : "search"
"#{protocol}://#{configured_host}/v1/#{method}.php?"
end
def query_url_params(query)
{
key: configuration.api_key
}.merge(super)
end
def configured_host
configuration[:host] || "locationiq.org"
end
def results(query)
return [] unless doc = fetch_data(query)
if !doc.is_a?(Array)
case doc['error']
when "Invalid key"
raise_error(Geocoder::InvalidApiKey, doc['error'])
when "Key not active - Please write to contact@unwiredlabs.com"
raise_error(Geocoder::RequestDenied, doc['error'])
when "Rate Limited"
raise_error(Geocoder::OverQueryLimitError, doc['error'])
when "Unknown error - Please try again after some time"
raise_error(Geocoder::InvalidRequest, doc['error'])
end
end
doc.is_a?(Array) ? doc : [doc]
end
end
end
|