Class: Geocoder::Lookup::Opencagedata
- Inherits:
-
Base
- Object
- Base
- Geocoder::Lookup::Opencagedata
show all
- Defined in:
- lib/geocoder/lookups/opencagedata.rb
Instance Method Summary
collapse
Methods inherited from Base
#cache, #handle, #initialize, #map_link_url, #search
Instance Method Details
#name ⇒ Object
7
8
9
|
# File 'lib/geocoder/lookups/opencagedata.rb', line 7
def name
"OpenCageData"
end
|
#query_url(query) ⇒ Object
11
12
13
|
# File 'lib/geocoder/lookups/opencagedata.rb', line 11
def query_url(query)
"#{protocol}://api.opencagedata.com/geocode/v1/json?key=#{configuration.api_key}&#{url_query_string(query)}"
end
|
#required_api_key_parts ⇒ Object
15
16
17
|
# File 'lib/geocoder/lookups/opencagedata.rb', line 15
def required_api_key_parts
["key"]
end
|