location.cm.inc 739 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. // Cameroon
  3. function location_province_list_cm() {
  4. return array('ADA' => "Adamawa Province (Adamaoua)",
  5. 'CEN' => "Centre Province",
  6. 'EST' => "East Province (Est)",
  7. 'EXN' => "Extreme North Province (Extr�me-Nord)",
  8. 'LIT' => "Littoral Province",
  9. 'NOR' => "North Province (Nord)",
  10. 'NOT' => "Northwest Province (Nord-Ouest)",
  11. 'OUE' => "West Province (Ouest)",
  12. 'SUD' => "South Province (Sud)",
  13. 'SOU' => "Southwest Province (Sud-Ouest).");
  14. }
  15. /**
  16. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  17. */
  18. function location_bounds_cm() {
  19. return array(
  20. 'minlng' => 8.34605,
  21. 'minlat' => 1.648433,
  22. 'maxlng' => 16.32655,
  23. 'maxlat' => 13.158733,
  24. );
  25. }