You are here

function location_map_link_au_default_providers in Location 7.4

Same name and namespace in other branches
  1. 5.3 supported/location.au.inc \location_map_link_au_default_providers()
  2. 6.3 supported/location.au.inc \location_map_link_au_default_providers()
  3. 7.5 supported/location.au.inc \location_map_link_au_default_providers()
  4. 7.3 supported/location.au.inc \location_map_link_au_default_providers()

Return value

An array of values that work as keys to the array returned by location_map_link_us_providers. The idea is that if the administrator of the site has not yet had a chance to visit the "Map Links" subtab on the location module's settings page, that we can provide deep-linking to a relatively safe default. By 'relatively safe', we mean that the Terms Of Service of the provider of the maps are flexible enough for most parties.

For the case of the U.S., 'google' has relatively flexible Terms Of Service, whereas Yahoo! Maps and MapQuest have more restrictive Terms Of Service.

File

supported/location.au.inc, line 215

Code

function location_map_link_au_default_providers() {
  return array(
    'google',
  );
}