You are here

function location_bounds_ci in Location 7.3

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

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

File

supported/location.ci.inc, line 77
Cote D'Ivoire.

Code

function location_bounds_ci() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => -8.618719799999999,
    'minlat' => 4.34392201,
    'maxlng' => -2.506328,
    'maxlat' => 10.7264781,
  );
}