You are here

function location_bounds_ps in Location 7.3

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

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

File

supported/location.ps.inc, line 18
Palestinian Territory, Occupied.

Code

function location_bounds_ps() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 34.8671529,
    'minlat' => 31.3449095,
    'maxlng' => 35.5725362,
    'maxlat' => 32.54264,
  );
}