location.bz.inc 523 B

123456789101112131415161718192021222324
  1. <?php
  2. // Belize
  3. function location_province_list_bz() {
  4. return array('BZ' => "Belize District",
  5. 'CY' => "Cayo District",
  6. 'CR' => "Corozal District",
  7. 'OW' => "Orange Walk District",
  8. 'SC' => "Stann Creek District",
  9. 'TO' => "Toledo District");
  10. }
  11. /**
  12. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  13. */
  14. function location_bounds_bz() {
  15. return array(
  16. 'minlng' => -89.19635,
  17. 'minlat' => 15.799133,
  18. 'maxlng' => -87.64955,
  19. 'maxlat' => 18.4742,
  20. );
  21. }