You are here

function location_map_link_ca_providers in Location 7.4

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

File

supported/location.ca.inc, line 173

Code

function location_map_link_ca_providers() {
  return array(
    'google' => array(
      'name' => 'Google Maps',
      'url' => 'http://maps.google.ca',
      'tos' => 'http://www.google.ca/help/terms_local.html',
    ),
    'yahoo' => array(
      'name' => 'Yahoo! Maps',
      'url' => 'http://ca.maps.yahoo.com',
      'tos' => 'http://help.yahoo.com/help/ca/maps/maps-25.html',
    ),
    'mapquest' => array(
      'name' => 'MapQuest',
      'url' => 'http://www.mapquest.com',
      'tos' => 'http://www.mapquest.com/features/main.adp?page=legal',
    ),
  );
}