You are here

function location_bounds_cd in Location 7.3

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

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

File

supported/location.cd.inc, line 30
Congo, The Democratic Republic of the.

Code

function location_bounds_cd() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 12.2109131,
    'minlat' => -13.45835,
    'maxlng' => 31.2804468,
    'maxlat' => 5.37528025,
  );
}