Class: Geocoder::Lookup::Twogis
  
  
  
  
  
    - Inherits:
- 
      Base
      
        
          - Object
- Base
- Geocoder::Lookup::Twogis
 show all
    - Defined in:
- lib/geocoder/lookups/twogis.rb
 
  
    
      Instance Method Summary
      collapse
    
    
  
  
  
  
  
  
  
  
  
  Methods inherited from Base
  #cache, #handle, #initialize, #query_url, #search
  
    Instance Method Details
    
      
  
  
    #map_link_url(coordinates)  ⇒ Object 
  
  
  
  
    | 
15
16
17 | # File 'lib/geocoder/lookups/twogis.rb', line 15
def map_link_url(coordinates)
  "https://2gis.ru/?m=#{coordinates.join(',')}"
end | 
 
    
      
  
  
    #name  ⇒ Object 
  
  
  
  
    | 
7
8
9 | # File 'lib/geocoder/lookups/twogis.rb', line 7
def name
  "2gis"
end | 
 
    
      
  
  
    #required_api_key_parts  ⇒ Object 
  
  
  
  
    | 
11
12
13 | # File 'lib/geocoder/lookups/twogis.rb', line 11
def required_api_key_parts
  ["key"]
end | 
 
    
      
  
  
    #supported_protocols  ⇒ Object 
  
  
  
  
    | 
19
20
21 | # File 'lib/geocoder/lookups/twogis.rb', line 19
def supported_protocols
  [:https]
end |