You are here

function location_bounds_wf in Location 7.3

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

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

File

supported/location.wf.inc, line 22
Wallis and Futuna.

Code

function location_bounds_wf() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => -178.1847,
    'minlat' => -14.378811,
    'maxlng' => -176.12456,
    'maxlat' => -13.209063,
  );
}