location.wf.inc 481 B

12345678910111213141516171819202122232425
  1. <?php
  2. // Wallis and Futuna
  3. function location_province_list_wf() {
  4. return array(
  5. 'A' => "Alo",
  6. 'S' => "Sigave",
  7. 'W' => "Wallis",
  8. );
  9. }
  10. /**
  11. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  12. */
  13. function location_bounds_wf() {
  14. // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  15. // EPSG:900913
  16. return array(
  17. 'minlng' => -178.18470,
  18. 'minlat' => -14.378811,
  19. 'maxlng' => -176.12456,
  20. 'maxlat' => -13.209063,
  21. );
  22. }