You are here

function location_bounds_as in Location 5.3

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

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

File

supported/location.as.inc, line 16

Code

function location_bounds_as() {
  return array(
    'minlng' => -170.9021,
    'minlat' => -14.541433,
    'maxlng' => -168.23395,
    'maxlat' => -14.183633,
  );
}