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, #initialize, #query_url, #required_api_key_parts, #search

Constructor Details

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

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

#supported_protocolsObject



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

def supported_protocols
  [:https]
end