location.pl.inc 767 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. // Poland
  3. function location_province_list_pl() {
  4. return array('DO' => "Dolnoslaskie",
  5. 'KP' => "Kujawsko-Pomorskie",
  6. 'LO' => "Lodzkie",
  7. 'LL' => "Lubelskie",
  8. 'LU' => "Lubuskie",
  9. 'ML' => "Malopolskie",
  10. 'MZ' => "Mazowieckie",
  11. 'OP' => "Opolskie",
  12. 'PP' => "Podkarpackie",
  13. 'PL' => "Podlaskie",
  14. 'PM' => "Pomorskie",
  15. 'SL' => "Slaskie",
  16. 'SW' => "Swietokrzyskie",
  17. 'WM' => "Warminsko-Mazurskie",
  18. 'WP' => "Wielkopolskie",
  19. 'ZA' => "Zachodniopomorskie");
  20. }
  21. /**
  22. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  23. */
  24. function location_bounds_pl() {
  25. return array(
  26. 'minlng' => 14.10525,
  27. 'minlat' => 49.0147,
  28. 'maxlng' => 24.13405,
  29. 'maxlat' => 54.922967,
  30. );
  31. }