location.rw.inc 617 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. // Rwanda
  3. function location_province_list_rw() {
  4. return array('BU' => "Butare",
  5. 'BY' => "Byumba",
  6. 'CY' => "Cyangugu",
  7. 'GK' => "Gikongoro",
  8. 'GS' => "Gisenyi",
  9. 'GT' => "Gitarama",
  10. 'KG' => "Kibungo",
  11. 'KY' => "Kibuye",
  12. 'KR' => "Kigali Rurale",
  13. 'KV' => "Kigali-ville",
  14. 'RU' => "Ruhengeri",
  15. 'UM' => "Umutara");
  16. }
  17. /**
  18. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  19. */
  20. function location_bounds_rw() {
  21. return array(
  22. 'minlng' => 28.8737,
  23. 'minlat' => -2.890967,
  24. 'maxlng' => 30.87085,
  25. 'maxlat' => -1.116267,
  26. );
  27. }