You are here

function location_latlon_exact_au in Location 7.3

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

Exact us.

Parameters

array $location: An associative array $location where 'street' => the street portion of the location 'supplemental' => additional street portion of the location 'province' => the province, state, or territory 'country' => lower-cased two-letter ISO code (REQUIRED) 'postal_code' => the international postal code for this location (REQUIRED)

Return value

NULL Deprecated.

File

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

Code

function location_latlon_exact_au($location = array()) {
  return NULL;

  // By uncommenting the line of code below, you legally acknowledge that you understand that you can only
  // do so under the terms of the Non-Commercial Share-alike license described at http://creativecommons.org/licenses/by-nc-sa/2.0/
  // @todo return _location_latlon_exact_us_geocoder($location);
}