location.ls.inc 578 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. // Lesotho
  3. function location_province_list_ls() {
  4. return array('BE' => "Berea",
  5. 'BB' => "Butha-Buthe",
  6. 'LE' => "Leribe",
  7. 'MF' => "Mafeteng",
  8. 'MS' => "Maseru",
  9. 'MH' => "Mohale's Hoek",
  10. 'MK' => "Mokhotlong",
  11. 'QN' => "Qacha's Nek",
  12. 'QT' => "Quthing",
  13. 'TT' => "Thaba-Tseka");
  14. }
  15. /**
  16. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  17. */
  18. function location_bounds_ls() {
  19. return array(
  20. 'minlng' => 27.04245,
  21. 'minlat' => -30.613033,
  22. 'maxlng' => 29.4317,
  23. 'maxlat' => -28.549033,
  24. );
  25. }