You are here

function location_bounds_dm in Location 7.3

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

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

File

supported/location.dm.inc, line 29
Dominica.

Code

function location_bounds_dm() {
  return array(
    'minlng' => -61.5093,
    'minlat' => 15.237433,
    'maxlng' => -61.20985,
    'maxlat' => 15.627967,
  );
}