You are here

function location_bounds_mh in Location 7.3

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

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

File

supported/location.mh.inc, line 52
Marshall Islands.

Code

function location_bounds_mh() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 165.282448,
    'minlat' => 4.57359792,
    'maxlng' => 172.029943,
    'maxlat' => 14.6102204,
  );
}