Class: Geocoder::Lookup::Telize
- Inherits:
-
Base
- Object
- Base
- Geocoder::Lookup::Telize
show all
- Defined in:
- lib/geocoder/lookups/telize.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/telize.rb', line 7
def name
"Telize"
end
|
#query_url(query) ⇒ Object
15
16
17
18
19
20
21
|
# File 'lib/geocoder/lookups/telize.rb', line 15
def query_url(query)
if configuration[:host]
"#{protocol}://#{configuration[:host]}/location/#{query.sanitized_text}"
else
"#{protocol}://telize-v1.p.mashape.com/location/#{query.sanitized_text}?mashape-key=#{api_key}"
end
end
|
#required_api_key_parts ⇒ Object
11
12
13
|
# File 'lib/geocoder/lookups/telize.rb', line 11
def required_api_key_parts
configuration[:host] ? [] : ["key"]
end
|
#supported_protocols ⇒ Object
23
24
25
26
27
28
|
# File 'lib/geocoder/lookups/telize.rb', line 23
def supported_protocols
[].tap do |array|
array << :https
array << :http if configuration[:host]
end
end
|