location.im.inc 510 B

123456789101112131415161718192021222324252627
  1. <?php
  2. // Isle of Man
  3. // See http://www.statoids.com/uim.html
  4. function location_province_list_im() {
  5. return array(
  6. 'AY' => 'Ayre',
  7. 'GR' => 'Garff',
  8. 'GB' => 'Glenfaba',
  9. 'MC' => 'Michael',
  10. 'MD' => 'Middle',
  11. 'RU' => 'Rushen',
  12. );
  13. }
  14. /**
  15. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  16. */
  17. function location_bounds_im() {
  18. return array(
  19. 'minlng' => -4.874,
  20. 'minlat' => 54.0471,
  21. 'maxlng' => -4.38405,
  22. 'maxlat' => 54.424067,
  23. );
  24. }