You are here

function location_bounds_va in Location 7.3

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

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

File

supported/location.va.inc, line 18
Holy See (Vatican City State).

Code

function location_bounds_va() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 12.4443363,
    'minlat' => 41.9001817,
    'maxlng' => 12.4583923,
    'maxlat' => 41.90845,
  );
}