location.lt.inc 565 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. // Lithuania
  3. function location_province_list_lt() {
  4. return array('AL' => "Alytus",
  5. 'KA' => "Kaunas",
  6. 'KL' => "Klaipeda",
  7. 'MA' => "Marijampole",
  8. 'PA' => "Panevezys",
  9. 'SI' => "Siauliai",
  10. 'TA' => "Taurage",
  11. 'TE' => "Telsiai",
  12. 'UT' => "Utena",
  13. 'VI' => "Vilnius");
  14. }
  15. /**
  16. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  17. */
  18. function location_bounds_lt() {
  19. return array(
  20. 'minlng' => 20.76725,
  21. 'minlat' => 53.949833,
  22. 'maxlng' => 26.86295,
  23. 'maxlat' => 56.478033,
  24. );
  25. }