Class: Geocoder::Lookup::Google
- Inherits:
-
Base
- Object
- Base
- Geocoder::Lookup::Google
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
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
if configuration.api_key
[:https]
else
[:http, :https]
end
end
|