You are here

function location_driving_directions_link_au in Location 7.3

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

Directions link.

For now, assume site-admin wants driving directions linked to tinfo! Maybe later, we can add some kind of country-specific settings page that allows the site-admin to decide which site to link to for driving directions.

@returns string A link to driving directions

Parameters

array $location_a: Is an associative array that represents a full location where 'street' => the street portions of the location 'supplemental' => additional street portion of the location 'province' => the province, state, or territory 'country' => lower-cased two-letter ISO code (REQUIRED)

array $location_b: Is associative array that represents a full location in the same way that parameter $location_b does.

File

supported/location.au.inc, line 371
Australia.

Code

function location_driving_directions_link_au($location_a, $location_b) {
  return _location_driving_directions_link_au_yahoo($location_a, $location_b);
}