You are here

function location_bounds_md in Location 7.3

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

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

File

supported/location.md.inc, line 59
Moldova, Republic of.

Code

function location_bounds_md() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 26.617889,
    'minlat' => 45.4617739,
    'maxlng' => 30.1315763,
    'maxlat' => 48.4860338,
  );
}