You are here

function location_bounds_to in Location 7.3

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

Returns minimum and maximum latitude and longitude needed to create a bounding box.

File

supported/location.to.inc, line 22
Tonga.

Code

function location_bounds_to() {
  return array(
    'minlng' => -176.29485,
    'minlat' => -22.319633,
    'maxlng' => -173.6335,
    'maxlat' => -15.5681,
  );
}