You are here

function location_bounds_kr in Location 7.3

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

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

File

supported/location.kr.inc, line 35
Korea, Republic Of (South Korea).

Code

function location_bounds_kr() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 124.613974,
    'minlat' => 33.1973029,
    'maxlng' => 130.920928,
    'maxlat' => 38.5783435,
  );
}