You are here

function location_latlon_exact_au in Location 7.4

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.3 supported/location.au.inc \location_latlon_exact_au()

Parameters: 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)

File

supported/location.au.inc, line 82

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/

  //return _location_latlon_exact_us_geocoder($location);
}