location.sl.inc 418 B

12345678910111213141516171819202122
  1. <?php
  2. // Sierra Leone
  3. function location_province_list_sl() {
  4. return array('E' => "Eastern",
  5. 'N' => "Northern",
  6. 'S' => "Southern",
  7. 'W' => "Western");
  8. }
  9. /**
  10. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  11. */
  12. function location_bounds_sl() {
  13. return array(
  14. 'minlng' => -13.39655,
  15. 'minlat' => 6.905,
  16. 'maxlng' => -10.2617,
  17. 'maxlat' => 10.008,
  18. );
  19. }