You are here

function location_bounds_hm in Location 7.3

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

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

File

supported/location.hm.inc, line 23
Heard Island and McDonald Islands.

Code

function location_bounds_hm() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 73.2363871,
    'minlat' => -53.192669,
    'maxlng' => 73.8452388,
    'maxlat' => -52.961572,
  );
}