You are here

function location_bounds_hk in Location 7.3

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

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

File

supported/location.hk.inc, line 37
Hong Kong.

Code

function location_bounds_hk() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 113.837319,
    'minlat' => 22.178699,
    'maxlng' => 114.401316,
    'maxlat' => 22.5605361,
  );
}