location.lu.inc 625 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. // Luxembourg
  3. function location_province_list_lu() {
  4. return array('DD' => "Diekirch",
  5. 'DC' => "Clervaux",
  6. 'DR' => "Redange",
  7. 'DV' => "Vianden",
  8. 'DW' => "Wiltz",
  9. 'GG' => "Grevenmacher",
  10. 'GE' => "Echternach",
  11. 'GR' => "Remich",
  12. 'LL' => "Luxembourg",
  13. 'LC' => "Capellen",
  14. 'LE' => "Esch-sur-Alzette",
  15. 'LM' => "Mersch");
  16. }
  17. /**
  18. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  19. */
  20. function location_bounds_lu() {
  21. return array(
  22. 'minlng' => 5.69075,
  23. 'minlat' => 49.470867,
  24. 'maxlng' => 6.43925,
  25. 'maxlat' => 50.182633,
  26. );
  27. }