mirror of
https://github.com/publiclab/mapknitter.git
synced 2025-12-05 16:00:00 +01:00
64 lines
2.9 KiB
Ruby
64 lines
2.9 KiB
Ruby
if defined? Geokit
|
|
|
|
# These defaults are used in Geokit::Mappable.distance_to and in acts_as_mappable
|
|
Geokit::default_units = :miles
|
|
Geokit::default_formula = :sphere
|
|
|
|
# This is the timeout value in seconds to be used for calls to the geocoder web
|
|
# services. For no timeout at all, comment out the setting. The timeout unit
|
|
# is in seconds.
|
|
# Geokit::Geocoders::timeout = 3
|
|
|
|
# These settings are used if web service calls must be routed through a proxy.
|
|
# These setting can be nil if not needed, otherwise, addr and port must be
|
|
# filled in at a minimum. If the proxy requires authentication, the username
|
|
# and password can be provided as well.
|
|
Geokit::Geocoders::proxy_addr = nil
|
|
Geokit::Geocoders::proxy_port = nil
|
|
Geokit::Geocoders::proxy_user = nil
|
|
Geokit::Geocoders::proxy_pass = nil
|
|
|
|
# This is your yahoo application key for the Yahoo Geocoder.
|
|
# See http://developer.yahoo.com/faq/index.html#appid
|
|
# and http://developer.yahoo.com/maps/rest/V1/geocode.html
|
|
Geokit::Geocoders::yahoo = 'REPLACE_WITH_YOUR_YAHOO_KEY'
|
|
|
|
# This is your Google Maps geocoder key.
|
|
# See http://www.google.com/apis/maps/signup.html
|
|
# and http://www.google.com/apis/maps/documentation/#Geocoding_Examples
|
|
# For whooz.org:
|
|
# Geokit::Geocoders::google = 'ABQIAAAANO6Yx8ihhesSqnPHx9a3RxQdvN0FEuVcteV705f0fnXGaYEibxS-HQqHANNxOQU4ARfIjewUoqvuaQ'
|
|
# For localhost:
|
|
# Geokit::Geocoders::google = 'ABQIAAAANO6Yx8ihhesSqnPHx9a3RxRqDtX07F3nozhmEw8PcvqFmxON_BSIyX0WokMpKFKWkLQ-HTNk69dlHA'
|
|
# For cartagen.org:
|
|
# Geokit::Geocoders::google = 'ABQIAAAANO6Yx8ihhesSqnPHx9a3RxQ5ix9qLsIfiytjxJIRHII0JHQkKRQXtEgA8345w3Mkz92z_BDeV0SCEA'
|
|
# For map.cartagen.org:
|
|
Geokit::Geocoders::google = 'ABQIAAAANO6Yx8ihhesSqnPHx9a3RxQWBoXWBrlkEUL-tdL_AsWXzvTH0xT-5lfSNkW4zpDMdK9jmjmggAHvYw'
|
|
|
|
# This is your username and password for geocoder.us.
|
|
# To use the free service, the value can be set to nil or false. For
|
|
# usage tied to an account, the value should be set to username:password.
|
|
# See http://geocoder.us
|
|
# and http://geocoder.us/user/signup
|
|
Geokit::Geocoders::geocoder_us = false
|
|
|
|
# This is your authorization key for geocoder.ca.
|
|
# To use the free service, the value can be set to nil or false. For
|
|
# usage tied to an account, set the value to the key obtained from
|
|
# Geocoder.ca.
|
|
# See http://geocoder.ca
|
|
# and http://geocoder.ca/?register=1
|
|
Geokit::Geocoders::geocoder_ca = false
|
|
|
|
# Uncomment to use a username with the Geonames geocoder
|
|
#Geokit::Geocoders::geonames="REPLACE_WITH_YOUR_GEONAMES_USERNAME"
|
|
|
|
# This is the order in which the geocoders are called in a failover scenario
|
|
# If you only want to use a single geocoder, put a single symbol in the array.
|
|
# Valid symbols are :google, :yahoo, :us, and :ca.
|
|
# Be aware that there are Terms of Use restrictions on how you can use the
|
|
# various geocoders. Make sure you read up on relevant Terms of Use for each
|
|
# geocoder you are going to use.
|
|
Geokit::Geocoders::provider_order = [:google,:us]
|
|
end
|