location.lr.inc 636 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. // Liberia
  3. function location_province_list_lr() {
  4. return array('BI' => "Bomi",
  5. 'BG' => "Bong",
  6. 'GB' => "Grand Bassa",
  7. 'CM' => "Grand Cape Mount",
  8. 'GG' => "Grand Gedeh",
  9. 'GK' => "Grand Kru",
  10. 'LO' => "Lofa",
  11. 'MG' => "Margibi",
  12. 'ML' => "Maryland",
  13. 'MS' => "Montserrado",
  14. 'NB' => "Nimba",
  15. 'RC' => "River Cess",
  16. 'SN' => "Sinoe");
  17. }
  18. /**
  19. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  20. */
  21. function location_bounds_lr() {
  22. return array(
  23. 'minlng' => -11.5545,
  24. 'minlat' => 4.278,
  25. 'maxlng' => -7.4955,
  26. 'maxlat' => 8.526333,
  27. );
  28. }