You are here

function location_bounds_bz in Location 7.4

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

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

File

supported/location.bz.inc, line 17

Code

function location_bounds_bz() {
  return array(
    'minlng' => -89.19635,
    'minlat' => 15.799133,
    'maxlng' => -87.64955,
    'maxlat' => 18.4742,
  );
}