location.sz.inc 422 B

12345678910111213141516171819202122
  1. <?php
  2. // Swaziland
  3. function location_province_list_sz() {
  4. return array('H' => "Hhohho",
  5. 'L' => "Lubombo",
  6. 'M' => "Manzini",
  7. 'S' => "Shishelweni");
  8. }
  9. /**
  10. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  11. */
  12. function location_bounds_sz() {
  13. return array(
  14. 'minlng' => 30.7093,
  15. 'minlat' => -27.274367,
  16. 'maxlng' => 32.2211,
  17. 'maxlat' => -25.720333,
  18. );
  19. }