You are here

function location_bounds_bn in Location 7.3

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

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

File

supported/location.bn.inc, line 23
Brunei Darussalam.

Code

function location_bounds_bn() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 113.99917,
    'minlat' => 4.01668101,
    'maxlng' => 115.360741,
    'maxlat' => 5.05705678,
  );
}