Class: Geocoder::Lookup::Telize

Inherits:
Base
  • Object
show all
Defined in:
lib/geocoder/lookups/telize.rb

Instance Method Summary collapse

Methods inherited from Base

#cache, #handle, #initialize, #map_link_url, #search

Constructor Details

This class inherits a constructor from Geocoder::Lookup::Base

Instance Method Details

#nameObject



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_partsObject



11
12
13
# File 'lib/geocoder/lookups/telize.rb', line 11

def required_api_key_parts
  configuration[:host] ? [] : ["key"]
end

#supported_protocolsObject



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