You are here

function location_bounds_aq in Location 7.3

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

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

File

supported/location.aq.inc, line 18
Antarctica.

Code

function location_bounds_aq() {
  return array(
    'minlng' => -179.999427042259,
    'minlat' => -89.90000000000001,
    'maxlng' => 179.999427042256,
    'maxlat' => -60.9997330347133,
  );
}