location.ck.inc 696 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // Cook Islands
  3. function location_province_list_ck() {
  4. return array('PU' => "Pukapuka",
  5. 'RK' => "Rakahanga",
  6. 'MK' => "Manihiki",
  7. 'PE' => "Penrhyn",
  8. 'NI' => "Nassau Island",
  9. 'SU' => "Surwarrow",
  10. 'PA' => "Palmerston",
  11. 'AI' => "Aitutaki",
  12. 'MA' => "Manuae",
  13. 'TA' => "Takutea",
  14. 'MT' => "Mitiaro",
  15. 'AT' => "Atiu",
  16. 'MU' => "Mauke",
  17. 'RR' => "Rarotonga",
  18. 'MG' => "Mangaia");
  19. }
  20. /**
  21. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  22. */
  23. function location_bounds_ck() {
  24. return array(
  25. 'minlng' => -165.7749,
  26. 'minlat' => -11.650367,
  27. 'maxlng' => -165.37025,
  28. 'maxlat' => -10.815933,
  29. );
  30. }