You are here

function location_bounds_kp in Location 7.3

Same name and namespace in other branches
  1. 5.3 supported/location.kp.inc \location_bounds_kp()
  2. 6.3 supported/location.kp.inc \location_bounds_kp()
  3. 7.5 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 30
Korea, Democratic People's Republic Of (North Korea).

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,
  );
}