location.bs.inc 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. // Bahamas
  3. function location_province_list_bs() {
  4. return array('ACK' => "Acklins",
  5. 'BER' => "Berry Islands",
  6. 'BIM' => "Bimini",
  7. 'BLK' => "Black Point",
  8. 'CAT' => "Cat Island",
  9. 'CAB' => "Central Abaco",
  10. 'CAN' => "Central Andros",
  11. 'CEL' => "Central Eleuthera",
  12. 'FRE' => "City of Freeport",
  13. 'CRO' => "Crooked Island",
  14. 'EGB' => "East Grand Bahama",
  15. 'EXU' => "Exuma",
  16. 'GRD' => "Grand Cay",
  17. 'HAR' => "Harbour Island",
  18. 'HOP' => "Hope Town",
  19. 'INA' => "Inagua",
  20. 'LNG' => "Long Island",
  21. 'MAN' => "Mangrove Cay",
  22. 'MAY' => "Mayaguana",
  23. 'MOO' => "Moore's Island",
  24. 'NAB' => "North Abaco",
  25. 'NAN' => "North Andros",
  26. 'NEL' => "North Eleuthera",
  27. 'RAG' => "Ragged Island",
  28. 'RUM' => "Rum Cay",
  29. 'SAL' => "San Salvador",
  30. 'SAB' => "South Abaco",
  31. 'SAN' => "South Andros",
  32. 'SEL' => "South Eleuthera",
  33. 'SWE' => "Spanish Wells",
  34. 'WGB' => "West Grand Bahama");
  35. }
  36. /**
  37. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  38. */
  39. function location_bounds_bs() {
  40. return array(
  41. 'minlng' => -79.2951,
  42. 'minlat' => 20.8592,
  43. 'maxlng' => -72.6932,
  44. 'maxlat' => 27.0249,
  45. );
  46. }