You are here

function location_bounds_la in Location 7.3

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

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

File

supported/location.la.inc, line 37
Lao People's Democratic Republic.

Code

function location_bounds_la() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 100.097073,
    'minlat' => 13.9154566,
    'maxlng' => 107.664363,
    'maxlat' => 22.496044,
  );
}