You are here

function location_bounds_pn in Location 7.3

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

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

File

supported/location.pn.inc, line 18
Pitcairn.

Code

function location_bounds_pn() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => -130.75307,
    'minlat' => -25.077124,
    'maxlng' => -124.77715,
    'maxlat' => -23.924326,
  );
}