You are here

function location_bounds_gb in Location 7.3

Same name and namespace in other branches
  1. 7.5 supported/location.gb.inc \location_bounds_gb()
  2. 7.4 supported/location.gb.inc \location_bounds_gb()

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

File

supported/location.gb.inc, line 181
Great Britain.

Code

function location_bounds_gb() {

  // 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,
  );
}