location.ee.inc 763 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // Estonia
  3. function location_province_list_ee() {
  4. return array('37' => "Harju County",
  5. '39' => "Hiiu County",
  6. '44' => "Ida-Viru County",
  7. '49' => "Jõgeva County",
  8. '51' => "Järva County",
  9. '57' => "Lääne County",
  10. '59' => "Lääne-Viru County",
  11. '65' => "Põlva County",
  12. '67' => "Pärnu County",
  13. '70' => "Rapla County",
  14. '74' => "Saare County",
  15. '78' => "Tartu County",
  16. '82' => "Valga County",
  17. '84' => "Viljandi County",
  18. '86' => "Võru County");
  19. }
  20. /**
  21. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  22. */
  23. function location_bounds_ee() {
  24. return array(
  25. 'minlng' => 21.75065,
  26. 'minlat' => 57.6099,
  27. 'maxlng' => 28.1741,
  28. 'maxlat' => 59.6835,
  29. );
  30. }