location.hr.inc 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. // Croatia
  3. function location_province_list_hr() {
  4. return array('01' => "Zagreb county",
  5. '02' => "Krapina-Zagorje county",
  6. '03' => "Sisak-Moslavina county",
  7. '04' => "Karlovac county",
  8. '05' => "Varazdin county",
  9. '06' => "Koprivnica-Krizevci county",
  10. '07' => "Bjelovar-Bilogora county",
  11. '08' => "Primorje-Gorski Kotar county",
  12. '09' => "Lika-Senj county",
  13. '10' => "Virovitica-Podravina county",
  14. '11' => "Pozega-Slavonia county",
  15. '12' => "Brod-Posavina county",
  16. '13' => "Zadar county",
  17. '14' => "Osijek-Baranja county",
  18. '15' => "Sibenik-Knin county",
  19. '16' => "Vukovar-Srijem county",
  20. '17' => "Split-Dalmatia county",
  21. '18' => "Istria county",
  22. '19' => "Dubrovnik-Neretva county",
  23. '20' => "Medjimurje county",
  24. '21' => "Zagreb (city)");
  25. }
  26. /**
  27. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  28. */
  29. function location_bounds_hr() {
  30. return array(
  31. 'minlng' => 13.50481,
  32. 'minlat' => 42.4555,
  33. 'maxlng' => 19.2728,
  34. 'maxlat' => 46.583016,
  35. );
  36. }