You are here

function location_bounds_uk in Location 5.3

Same name and namespace in other branches
  1. 6.3 supported/location.uk.inc \location_bounds_uk()

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

File

supported/location.uk.inc, line 276

Code

function location_bounds_uk() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  // From ISO code GB.
  return array(
    'minlng' => -13.691355,
    'minlat' => 49.9096161,
    'maxlng' => 1.77170536,
    'maxlat' => 60.8475532,
  );
}