location.bm.inc 612 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. // Bermuda
  3. function location_province_list_bm() {
  4. return array('DS' => "Devonshire",
  5. 'HC' => "Hamilton City",
  6. 'HA' => "Hamilton",
  7. 'PG' => "Paget",
  8. 'PB' => "Pembroke",
  9. 'GC' => "Saint George City",
  10. 'SG' => "Saint George's",
  11. 'SA' => "Sandys",
  12. 'SM' => "Smith's",
  13. 'SH' => "Southampton",
  14. 'WA' => "Warwick");
  15. }
  16. /**
  17. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  18. */
  19. function location_bounds_bm() {
  20. return array(
  21. 'minlng' => -64.98725,
  22. 'minlat' => 32.189967,
  23. 'maxlng' => -64.6069,
  24. 'maxlat' => 32.406167,
  25. );
  26. }