You are here

function location_bounds_tw in Location 7.3

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

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

File

supported/location.tw.inc, line 44
Taiwan, Province of China.

Code

function location_bounds_tw() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 118.279839,
    'minlat' => 21.9044005,
    'maxlng' => 122.005606,
    'maxlat' => 25.2871914,
  );
}