Class: Geocoder::Lookup::Yandex

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

Instance Method Summary collapse

Methods inherited from Base

#cache, #handle, #required_api_key_parts, #search

Instance Method Details



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

def map_link_url(coordinates)
  "http://maps.yandex.ru/?ll=#{coordinates.reverse.join(',')}"
end

#nameObject



7
8
9
# File 'lib/geocoder/lookups/yandex.rb', line 7

def name
  "Yandex"
end

#query_url(query) ⇒ Object



15
16
17
# File 'lib/geocoder/lookups/yandex.rb', line 15

def query_url(query)
  "#{protocol}://geocode-maps.yandex.ru/1.x/?" + url_query_string(query)
end