You are here

function location_bounds_ai in Location 7.3

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

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

File

supported/location.ai.inc, line 18
Anguilla.

Code

function location_bounds_ai() {
  return array(
    'minlng' => -63.1879,
    'minlat' => 18.137033,
    'maxlng' => -62.9537,
    'maxlat' => 18.248633,
  );
}