You are here

function location_bounds_cg in Location 7.3

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

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

File

supported/location.cg.inc, line 30
Congo.

Code

function location_bounds_cg() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 11.1275683,
    'minlat' => -5.0134396,
    'maxlng' => 18.6424068,
    'maxlat' => 3.70827606,
  );
}