You are here

function location_bounds_rs in Location 7.3

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

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

File

supported/location.rs.inc, line 18
Serbia.

Code

function location_bounds_rs() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 18.8448339,
    'minlat' => 42.234953,
    'maxlng' => 22.9844779,
    'maxlat' => 46.1740665,
  );
}