You are here

function _getdirections_loadaddress in Get Directions 6.2

Same name and namespace in other branches
  1. 6 getdirections.module \_getdirections_loadaddress()
  2. 7.3 getdirections.module \_getdirections_loadaddress()
  3. 7.2 getdirections.module \_getdirections_loadaddress()

Function to collect an address

Parameters

array $location:

Return value

Returns array.

9 calls to _getdirections_loadaddress()
getdirections_n2u_setlocation in ./getdirections.module
Function to setup the map
getdirections_setlocation in ./getdirections.module
Function to setup the map and form
getdirections_setlocations in ./getdirections.module
Function to setup the map
getdirections_setlocations_via in ./getdirections.module
Function to setup the map to display waypoints
getdirections_setlocation_id in ./getdirections.module
Function to setup the map and form

... See full list

File

./getdirections.module, line 1279
Fetches google map directions.

Code

function _getdirections_loadaddress($location, $addcountry = TRUE) {

  // theme it so others can change it
  return theme('getdirections_loadaddress', $location, $addcountry);
}