location.li.inc 580 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. // Liechtenstein
  3. function location_province_list_li() {
  4. return array('V' => "Vaduz",
  5. 'A' => "Schaan",
  6. 'B' => "Balzers",
  7. 'N' => "Triesen",
  8. 'E' => "Eschen",
  9. 'M' => "Mauren",
  10. 'T' => "Triesenberg",
  11. 'R' => "Ruggell",
  12. 'G' => "Gamprin",
  13. 'L' => "Schellenberg",
  14. 'P' => "Planken");
  15. }
  16. /**
  17. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  18. */
  19. function location_bounds_li() {
  20. return array(
  21. 'minlng' => 9.417494,
  22. 'minlat' => 46.997118,
  23. 'maxlng' => 9.61825,
  24. 'maxlat' => 47.206967,
  25. );
  26. }