location.ac.inc 535 B

12345678910111213141516171819202122
  1. <?php
  2. // Ascension Island
  3. function location_province_list_ac() {
  4. return array();
  5. }
  6. /**
  7. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  8. */
  9. function location_bounds_ac() {
  10. // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  11. // Bounds manually eyeballed by bdragon in EPSG:4326 using the coordinate
  12. // readout in udig, because the poly is grouped with Saint Helena.
  13. return array(
  14. 'minlng' => -14.4278,
  15. 'minlat' => -7.9875,
  16. 'maxlng' => -14.2581,
  17. 'maxlat' => -7.8630,
  18. );
  19. }