location.sb.inc 581 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. // Solomon Islands
  3. function location_province_list_sb() {
  4. return array('CE' => "Central",
  5. 'CH' => "Choiseul",
  6. 'GC' => "Guadalcanal",
  7. 'HO' => "Honiara",
  8. 'IS' => "Isabel",
  9. 'MK' => "Makira",
  10. 'ML' => "Malaita",
  11. 'RB' => "Rennell and Bellona",
  12. 'TM' => "Temotu",
  13. 'WE' => "Western");
  14. }
  15. /**
  16. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  17. */
  18. function location_bounds_sb() {
  19. return array(
  20. 'minlng' => 155.4885,
  21. 'minlat' => -12.2589,
  22. 'maxlng' => 170.23905,
  23. 'maxlat' => -5.210433,
  24. );
  25. }