location.io.inc 586 B

1234567891011121314151617181920212223242526
  1. <?php
  2. // British Indian Ocean Territory
  3. function location_province_list_io() {
  4. return array('PB' => "Peros Banhos",
  5. 'SI' => "Salomon Islands",
  6. 'NI' => "Nelsons Island",
  7. 'TB' => "Three Brothers",
  8. 'EA' => "Eagle Islands",
  9. 'DI' => "Danger Island",
  10. 'EG' => "Egmont Islands",
  11. 'DG' => "Diego Garcia");
  12. }
  13. /**
  14. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  15. */
  16. function location_bounds_io() {
  17. return array(
  18. 'minlng' => 71.2711,
  19. 'minlat' => -7.505967,
  20. 'maxlng' => 72.47375,
  21. 'maxlat' => -5.220733,
  22. );
  23. }