location.va.inc 431 B

123456789101112131415161718192021
  1. <?php
  2. // Holy See (Vatican City State)
  3. function location_province_list_va() {
  4. return array();
  5. }
  6. /**
  7. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  8. */
  9. function location_bounds_va() {
  10. // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  11. // EPSG:900913
  12. return array(
  13. 'minlng' => 12.4443363,
  14. 'minlat' => 41.9001817,
  15. 'maxlng' => 12.4583923,
  16. 'maxlat' => 41.9084500,
  17. );
  18. }