location.bj.inc 591 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. // Benin
  3. function location_province_list_bj() {
  4. return array('AL' => "Alibori",
  5. 'AK' => "Atakora",
  6. 'AQ' => "Atlantique",
  7. 'BO' => "Borgou",
  8. 'CO' => "Collines",
  9. 'DO' => "Donga",
  10. 'KO' => "Kouffo",
  11. 'LI' => "Littoral",
  12. 'MO' => "Mono",
  13. 'OU' => "Oueme",
  14. 'PL' => "Plateau",
  15. 'ZO' => "Zou");
  16. }
  17. /**
  18. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  19. */
  20. function location_bounds_bj() {
  21. return array(
  22. 'minlng' => 0.7266,
  23. 'minlat' => 6.189467,
  24. 'maxlng' => 3.81025,
  25. 'maxlat' => 12.340233,
  26. );
  27. }