You are here

function location_bounds_mo in Location 7.3

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

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

File

supported/location.mo.inc, line 24
Macau.

Code

function location_bounds_mo() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 113.52106,
    'minlat' => 22.1053701,
    'maxlng' => 113.587515,
    'maxlat' => 22.217663,
  );
}