location.ad.inc 530 B

12345678910111213141516171819202122232425
  1. <?php
  2. // Andorra
  3. function location_province_list_ad() {
  4. return array('ALV' => "Andorra la Vella",
  5. 'CAN' => "Canillo",
  6. 'ENC' => "Encamp",
  7. 'ESE' => "Escaldes-Engordany",
  8. 'LMA' => "La Massana",
  9. 'ORD' => "Ordino",
  10. 'SJL' => "Sant Julia de L�ria");
  11. }
  12. /**
  13. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  14. */
  15. function location_bounds_ad() {
  16. return array(
  17. 'minlng' => 1.3726,
  18. 'minlat' => 42.404867,
  19. 'maxlng' => 1.781219,
  20. 'maxlat' => 42.621636,
  21. );
  22. }