You are here

function location_bounds_bw in Location 7.4

Same name and namespace in other branches
  1. 5.3 supported/location.bw.inc \location_bounds_bw()
  2. 6.3 supported/location.bw.inc \location_bounds_bw()
  3. 7.5 supported/location.bw.inc \location_bounds_bw()
  4. 7.3 supported/location.bw.inc \location_bounds_bw()

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

File

supported/location.bw.inc, line 21

Code

function location_bounds_bw() {
  return array(
    'minlng' => 19.9836,
    'minlat' => -26.8509,
    'maxlng' => 29.2724,
    'maxlat' => -17.837133,
  );
}