location.hu.inc 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. // Hungary
  3. function location_province_list_hu() {
  4. return array('BU' => "Budapest",
  5. 'BC' => "Bekescsaba",
  6. 'DB' => "Debrecen",
  7. 'DJ' => "Dunaujvaros",
  8. 'EG' => "Eger",
  9. 'GY' => "Gyor",
  10. 'HM' => "Hodmezovasarhely",
  11. 'KP' => "Kaposvar",
  12. 'KC' => "Kecskemet",
  13. 'MK' => "Miskolc",
  14. 'NK' => "Nagykanizsa",
  15. 'NY' => "Nyiregyhaza",
  16. 'PC' => "Pecs",
  17. 'SO' => "Sopron",
  18. 'SG' => "Szeged",
  19. 'SK' => "Szekesfehervar",
  20. 'SL' => "Szolnok",
  21. 'SB' => "Szombathely",
  22. 'TB' => "Tatabanya",
  23. 'ZG' => "Zalaegerszeg",
  24. 'BK' => "Bacs-Kiskun",
  25. 'BR' => "Baranya",
  26. 'BS' => "Bekes",
  27. 'BA' => "Borsod-Abauj-Zemplen",
  28. 'CG' => "Csongrad",
  29. 'FJ' => "Fejer",
  30. 'GM' => "Gyor-Moson-Sopron",
  31. 'HB' => "Hajdu-Bihar",
  32. 'HV' => "Heves",
  33. 'JN' => "Jasz-Nagykun-Szolnok",
  34. 'KE' => "Komarom-Esztergom",
  35. 'NG' => "Nograd",
  36. 'PE' => "Pest",
  37. 'SM' => "Somogy",
  38. 'SS' => "Szabolcs-Szatmar-Bereg",
  39. 'TO' => "Tolna",
  40. 'VA' => "Vas",
  41. 'VZ' => "Veszprem",
  42. 'ZA' => "Zala");
  43. }
  44. /**
  45. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  46. */
  47. function location_bounds_hu() {
  48. return array(
  49. 'minlng' => 16.065,
  50. 'minlat' => 45.768167,
  51. 'maxlng' => 22.88665,
  52. 'maxlat' => 48.577,
  53. );
  54. }