location.tc.inc 726 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. // Turks and Caicos Islands
  3. function location_province_list_tc() {
  4. return array('AC' => "Ambergris Cays",
  5. 'DC' => "Dellis Cay",
  6. 'FC' => "French Cay",
  7. 'LW' => "Little Water Cay",
  8. 'RC' => "Parrot Cay",
  9. 'PN' => "Pine Cay",
  10. 'SL' => "Salt Cay",
  11. 'GT' => "Grand Turk",
  12. 'SC' => "South Caicos",
  13. 'EC' => "East Caicos",
  14. 'MC' => "Middle Caicos",
  15. 'NC' => "North Caicos",
  16. 'PR' => "Providenciales",
  17. 'WC' => "West Caicos");
  18. }
  19. /**
  20. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  21. */
  22. function location_bounds_tc() {
  23. return array(
  24. 'minlng' => -72.42375,
  25. 'minlat' => 21.2068,
  26. 'maxlng' => -70.9723,
  27. 'maxlat' => 21.9866,
  28. );
  29. }