Class: Geocoder::Lookup::Google

Inherits:
Base
  • Object
show all
Defined in:
lib/geocoder/lookups/google.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/google.rb', line 11

def map_link_url(coordinates)
  "http://maps.google.com/maps?q=#{coordinates.join(',')}"
end

#nameObject



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

def name
  "Google"
end

#supported_protocolsObject



15
16
17
18
19
20
21
22
# File 'lib/geocoder/lookups/google.rb', line 15

def supported_protocols
  # Google requires HTTPS if an API key is used.
  if configuration.api_key
    [:https]
  else
    [:http, :https]
  end
end