location.zw.inc 633 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. // Zimbabwe
  3. function location_province_list_zw() {
  4. return array('BU' => "Bulawayo (city)",
  5. 'HA' => "Harare (city)",
  6. 'ML' => "Manicaland",
  7. 'MC' => "Mashonaland Central",
  8. 'ME' => "Mashonaland East",
  9. 'MW' => "Mashonaland West",
  10. 'MV' => "Masvingo",
  11. 'MN' => "Matabeleland North",
  12. 'MS' => "Matabeleland South",
  13. 'MD' => "Midlands");
  14. }
  15. /**
  16. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  17. */
  18. function location_bounds_zw() {
  19. return array(
  20. 'minlng' => 25.23535,
  21. 'minlat' => -22.465267,
  22. 'maxlng' => 33.06475,
  23. 'maxlat' => -15.691267,
  24. );
  25. }