You are here

function location_bounds_tl in Location 7.3

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

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

File

supported/location.tl.inc, line 32
Timor Leste.

Code

function location_bounds_tl() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 124.030237,
    'minlat' => -9.501227699999999,
    'maxlng' => 127.313551,
    'maxlat' => -8.1353162,
  );
}