location.lc.inc 598 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. // Saint Lucia
  3. function location_province_list_lc() {
  4. return array('AR' => "Anse-la-Raye",
  5. 'CA' => "Castries",
  6. 'CH' => "Choiseul",
  7. 'DA' => "Dauphin",
  8. 'DE' => "Dennery",
  9. 'GI' => "Gros-Islet",
  10. 'LA' => "Laborie",
  11. 'MI' => "Micoud",
  12. 'PR' => "Praslin",
  13. 'SO' => "Soufriere",
  14. 'VF' => "Vieux-Fort");
  15. }
  16. /**
  17. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  18. */
  19. function location_bounds_lc() {
  20. return array(
  21. 'minlng' => -61.1531,
  22. 'minlat' => 13.692333,
  23. 'maxlng' => -60.8714,
  24. 'maxlat' => 14.0824,
  25. );
  26. }