You are here

function location_bounds_gd in Location 7.3

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

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

File

supported/location.gd.inc, line 27
Grenada.

Code

function location_bounds_gd() {
  return array(
    'minlng' => -61.839279,
    'minlat' => 11.956733,
    'maxlng' => -61.59945,
    'maxlat' => 12.179133,
  );
}