You are here

function location_bounds_me in Location 7.3

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

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

File

supported/location.me.inc, line 18
Montenegro.

Code

function location_bounds_me() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 18.4335307,
    'minlat' => 41.8520718,
    'maxlng' => 20.3551705,
    'maxlat' => 43.5478856,
  );
}