Class: Geocoder::Lookup::Google
- Defined in:
- lib/geocoder/lookups/google.rb
Direct Known Subclasses
Dstk, GooglePlacesDetails, GooglePlacesSearch, GooglePremier
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
#map_link_url(coordinates) ⇒ Object
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 |
#name ⇒ Object
7 8 9 |
# File 'lib/geocoder/lookups/google.rb', line 7 def name "Google" end |
#supported_protocols ⇒ Object
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 |