You are here

function location_bounds_co in Location 5.3

Same name and namespace in other branches
  1. 6.3 supported/location.co.inc \location_bounds_co()
  2. 7.5 supported/location.co.inc \location_bounds_co()
  3. 7.3 supported/location.co.inc \location_bounds_co()
  4. 7.4 supported/location.co.inc \location_bounds_co()

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

File

supported/location.co.inc, line 44

Code

function location_bounds_co() {
  return array(
    'minlng' => -81.8458,
    'minlat' => -4.0608,
    'maxlng' => -66.8912,
    'maxlat' => 15.886067,
  );
}