location.tk.inc 495 B

12345678910111213141516171819202122232425
  1. <?php
  2. // Tokelau
  3. function location_province_list_tk() {
  4. return array(
  5. 'A' => "Atafu",
  6. 'F' => "Fakaofo",
  7. 'N' => "Nukunonu",
  8. );
  9. }
  10. /**
  11. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  12. */
  13. function location_bounds_tk() {
  14. // Note: I determined this bounding box manually using a visualization tool. --Bdragon
  15. return array(
  16. 'minlng' => -172.68311,
  17. 'minlat' => -9.50595,
  18. 'maxlng' => -171.09833,
  19. 'maxlat' => -8.43977,
  20. );
  21. }