location.bi.inc 689 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. // Burundi
  3. function location_province_list_bi() {
  4. return array('BB' => "Bubanza",
  5. 'BJ' => "Bujumbura",
  6. 'BR' => "Bururi",
  7. 'CA' => "Cankuzo",
  8. 'CI' => "Cibitoke",
  9. 'GI' => "Gitega",
  10. 'KR' => "Karuzi",
  11. 'KY' => "Kayanza",
  12. 'KI' => "Kirundo",
  13. 'MA' => "Makamba",
  14. 'MU' => "Muramvya",
  15. 'MY' => "Muyinga",
  16. 'MW' => "Mwaro",
  17. 'NG' => "Ngozi",
  18. 'RT' => "Rutana",
  19. 'RY' => "Ruyigi");
  20. }
  21. /**
  22. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  23. */
  24. function location_bounds_bi() {
  25. return array(
  26. 'minlng' => 29.17565,
  27. 'minlat' => -4.499667,
  28. 'maxlng' => 30.8881,
  29. 'maxlat' => -2.4882,
  30. );
  31. }