location.ky.inc 522 B

1234567891011121314151617181920212223242526
  1. <?php
  2. // Cayman Islands
  3. function location_province_list_ky() {
  4. return array('CR' => "Creek",
  5. 'EA' => "Eastern",
  6. 'ML' => "Midland",
  7. 'ST' => "South Town",
  8. 'SP' => "Spot Bay",
  9. 'SK' => "Stake Bay",
  10. 'WD' => "West End",
  11. 'WN' => "Western");
  12. }
  13. /**
  14. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  15. */
  16. function location_bounds_ky() {
  17. return array(
  18. 'minlng' => -81.4223,
  19. 'minlat' => 19.2398,
  20. 'maxlng' => -79.75185,
  21. 'maxlat' => 19.7329,
  22. );
  23. }