You are here

function location_bounds_kp in Location 5.3

Same name and namespace in other branches
  1. 6.3 supported/location.kp.inc \location_bounds_kp()
  2. 7.5 supported/location.kp.inc \location_bounds_kp()
  3. 7.3 supported/location.kp.inc \location_bounds_kp()
  4. 7.4 supported/location.kp.inc \location_bounds_kp()

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

File

supported/location.kp.inc, line 24

Code

function location_bounds_kp() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 124.322106,
    'minlat' => 37.6754275,
    'maxlng' => 130.700476,
    'maxlat' => 43.0102698,
  );
}