You are here

function location_bounds_um in Location 7.3

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

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

File

supported/location.um.inc, line 28
United States Minor Outlying Islands.

Code

function location_bounds_um() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => -177.38854,
    'minlat' => -0.3889673,
    'maxlng' => 166.652597,
    'maxlat' => 28.2151006,
  );
}