You are here

function location_bounds_bb in Location 5.3

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

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

File

supported/location.bb.inc, line 22

Code

function location_bounds_bb() {
  return array(
    'minlng' => -59.6715,
    'minlat' => 13.018433,
    'maxlng' => -59.3994,
    'maxlat' => 13.285133,
  );
}