location.pt.inc 804 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. // Portugal
  3. function location_province_list_pt() {
  4. return array('AV' => "Aveiro",
  5. 'AR' => "Acores (Azores)",
  6. 'BJ' => "Beja",
  7. 'BA' => "Braga",
  8. 'BN' => "Braganca",
  9. 'CB' => "Castelo Branco",
  10. 'CO' => "Coimbra",
  11. 'EV' => "Evora",
  12. 'FA' => "Faro",
  13. 'GU' => "Guarda",
  14. 'LE' => "Leiria",
  15. 'LI' => "Lisboa",
  16. 'MA' => "Madeira",
  17. 'PG' => "Portalegre",
  18. 'PO' => "Porto",
  19. 'SA' => "Santarem",
  20. 'SE' => "Setubal",
  21. 'VC' => "Viana do Castelo",
  22. 'VR' => "Vila Real",
  23. 'VS' => "Viseu");
  24. }
  25. /**
  26. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  27. */
  28. function location_bounds_pt() {
  29. return array(
  30. 'minlng' => -31.25925,
  31. 'minlat' => 32.335633,
  32. 'maxlng' => -6.25515,
  33. 'maxlat' => 42.028267,
  34. );
  35. }