You are here

function location_bounds_gp in Location 7.3

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

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

File

supported/location.gp.inc, line 18
Guadeloupe.

Code

function location_bounds_gp() {
  return array(
    'minlng' => -61.81885,
    'minlat' => 15.840433,
    'maxlng' => -61.1777,
    'maxlat' => 16.4324,
  );
}