location.is.inc 555 B

1234567891011121314151617181920212223242526
  1. <?php
  2. // Iceland
  3. function location_province_list_is() {
  4. return array('AL' => "Austurland",
  5. 'HF' => "Hofuoborgarsvaeoi",
  6. 'NE' => "Norourland eystra",
  7. 'NV' => "Norourland vestra",
  8. 'SL' => "Suourland",
  9. 'SN' => "Suournes",
  10. 'VF' => "Vestfiroir",
  11. 'VL' => "Vesturland");
  12. }
  13. /**
  14. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  15. */
  16. function location_bounds_is() {
  17. return array(
  18. 'minlng' => -25.3873,
  19. 'minlat' => 63.426633,
  20. 'maxlng' => -13.5579,
  21. 'maxlat' => 67.174067,
  22. );
  23. }