{"id":1503,"date":"2026-05-19T12:11:07","date_gmt":"2026-05-19T11:11:07","guid":{"rendered":"https:\/\/www.iksz.eu\/?page_id=1503"},"modified":"2026-05-19T12:11:07","modified_gmt":"2026-05-19T11:11:07","slug":"felezz-hu","status":"publish","type":"page","link":"https:\/\/www.iksz.eu\/en\/felezz-hu\/","title":{"rendered":"Felezz.hu"},"content":{"rendered":"    \r\n    <style>\r\n        .felezz-map-wrapper { position: relative; margin: 2em 0; border: 1px solid #ddd; padding: 5px; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }\r\n        #felezz-map-container { width: 100%; height: 600px; z-index: 1; }\r\n        \r\n        #felezz-map-loader {\r\n            position: absolute;\r\n            top: 0; left: 0; right: 0; bottom: 0;\r\n            background: rgba(255, 255, 255, 0.9);\r\n            z-index: 10;\r\n            display: flex;\r\n            flex-direction: column;\r\n            justify-content: center;\r\n            align-items: center;\r\n        }\r\n        .felezz-spinner {\r\n            border: 5px solid #f3f3f3;\r\n            border-top: 5px solid #ff6600; \/* Felezz narancss\u00e1rga st\u00edlus *\/\r\n            border-radius: 50%;\r\n            width: 50px;\r\n            height: 50px;\r\n            animation: felezz-spin 1s linear infinite;\r\n            margin-bottom: 15px;\r\n        }\r\n        @keyframes felezz-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }\r\n\r\n        .felezz-map-disclaimer {\r\n            margin-top: 10px;\r\n            font-size: 13px;\r\n            color: #666;\r\n            font-family: Arial, sans-serif;\r\n            text-align: right;\r\n            padding-right: 5px;\r\n        }\r\n    <\/style>\r\n\r\n    <div class=\"felezz-map-wrapper\">\r\n        <div id=\"felezz-map-loader\">\r\n            <div class=\"felezz-spinner\"><\/div>\r\n            <strong style=\"color:#ff6600; font-family: sans-serif;\">Bev\u00e1lt\u00f3helyek bet\u00f6lt\u00e9se...<\/strong>\r\n        <\/div>\r\n        <div id=\"felezz-map-container\"><\/div>\r\n        \r\n        <div class=\"felezz-map-disclaimer\">\r\n            <em>\u2139\ufe0f A t\u00e9rk\u00e9p a <a href=\"https:\/\/felezz.eu\/\" target=\"_blank\">Felezz.eu<\/a> adatb\u00e1zis\u00e1ra \u00e9p\u00fcl. Az alap\u00e9rtelmezett t\u00e9rk\u00e9p &copy; OpenStreetMap.<\/em>\r\n        <\/div>\r\n    <\/div>\r\n    \r\n    <script>\r\n    document.addEventListener('DOMContentLoaded', function() {\r\n        var mapContainer = document.getElementById('felezz-map-container');\r\n        if (!mapContainer) return;\r\n\r\n        var map = L.map('felezz-map-container').setView([47.1625, 19.5033], 7);\r\n\r\n        L.tileLayer('https:\/\/{s}.tile.openstreetmap.org\/{z}\/{x}\/{y}.png', {\r\n            attribution: '&copy; <a href=\"https:\/\/www.openstreetmap.org\/copyright\">OpenStreetMap<\/a>',\r\n            maxZoom: 18\r\n        }).addTo(map);\r\n\r\n        var felezzIcon = L.icon({\r\n            iconUrl: 'https:\/\/cdn-icons-png.flaticon.com\/512\/2776\/2776067.png', \/\/ Narancss\u00e1rga helyjelz\u0151\r\n            iconSize: [32, 32],\r\n            iconAnchor: [16, 32],\r\n            popupAnchor: [0, -32]\r\n        });\r\n\r\n        var ajaxurl = \"https:\/\/www.iksz.eu\/wp-admin\/admin-ajax.php\";\r\n        \r\n        fetch(ajaxurl + '?action=get_felezz_shops')\r\n            .then(response => response.json())\r\n            .then(data => {\r\n                if (!data.elements || data.elements.length === 0) {\r\n                    document.getElementById('felezz-map-loader').innerHTML = '<strong style=\"color:#ff6600; font-family: sans-serif; text-align:center;\">Az adatok szinkroniz\u00e1l\u00e1sa a h\u00e1tt\u00e9rben zajlik.<br>K\u00e9rj\u00fck, friss\u00edtse az oldalt (F5) 1-2 perc m\u00falva!<\/strong>';\r\n                    return;\r\n                }\r\n\r\n                var markers = L.markerClusterGroup({\r\n                    chunkedLoading: true\r\n                });\r\n\r\n                data.elements.forEach(function(shop) {\r\n                    if (!shop.lat || !shop.lon) return;\r\n\r\n                    var popupContent = `\r\n                        <div style=\"font-family: Arial, sans-serif; min-width: 180px;\">\r\n                            <h4 style=\"margin: 0 0 8px 0; color: #ff6600;\">\ud83c\udfaf ${shop.name}<\/h4>\r\n                            <p style=\"margin: 4px 0; font-size: 13px;\">${shop.address}<\/p>\r\n                            <p style=\"margin: 10px 0 0 0;\">\r\n                                <a href=\"${shop.url}\" target=\"_blank\" style=\"display:inline-block; background:#ff6600; color:#fff; padding:5px 10px; border-radius:3px; text-decoration:none; font-weight:bold; font-size:12px;\">R\u00e9szletek megtekint\u00e9se &raquo;<\/a>\r\n                            <\/p>\r\n                        <\/div>\r\n                    `;\r\n\r\n                    var marker = L.marker([shop.lat, shop.lon], {icon: felezzIcon}).bindPopup(popupContent);\r\n                    markers.addLayer(marker);\r\n                });\r\n\r\n                map.addLayer(markers);\r\n                document.getElementById('felezz-map-loader').style.display = 'none';\r\n            })\r\n            .catch(error => {\r\n                console.error('Hiba az adatok bet\u00f6lt\u00e9sekor:', error);\r\n                document.getElementById('felezz-map-loader').innerHTML = '<span style=\"color:red; font-family: sans-serif; font-weight:bold;\">Hiba t\u00f6rt\u00e9nt az adatok bet\u00f6lt\u00e9sekor. K\u00e9rj\u00fck friss\u00edtse az oldalt.<\/span>';\r\n            });\r\n    });\r\n    <\/script>\r\n    \r\n    \n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1503","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Felezz.hu - Info Kommunik\u00e1ci\u00f3s Szakszervezet<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.iksz.eu\/en\/felezz-hu\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Felezz.hu - Info Kommunik\u00e1ci\u00f3s Szakszervezet\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.iksz.eu\/en\/felezz-hu\/\" \/>\n<meta property=\"og:site_name\" content=\"Info Kommunik\u00e1ci\u00f3s Szakszervezet\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.iksz.eu\\\/felezz-hu\\\/\",\"url\":\"https:\\\/\\\/www.iksz.eu\\\/felezz-hu\\\/\",\"name\":\"Felezz.hu - Info Kommunik\u00e1ci\u00f3s Szakszervezet\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.iksz.eu\\\/#website\"},\"datePublished\":\"2026-05-19T11:11:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.iksz.eu\\\/felezz-hu\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.iksz.eu\\\/felezz-hu\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.iksz.eu\\\/felezz-hu\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Kezd\u0151lap\",\"item\":\"https:\\\/\\\/www.iksz.eu\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Felezz.hu\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.iksz.eu\\\/#website\",\"url\":\"https:\\\/\\\/www.iksz.eu\\\/\",\"name\":\"Info Kommunik\u00e1ci\u00f3s Szakszervezet \\\/ IKSZ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.iksz.eu\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.iksz.eu\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.iksz.eu\\\/#organization\",\"name\":\"Info Kommunik\u00e1ci\u00f3s Szakszervezet \\\/ IKSZ\",\"url\":\"https:\\\/\\\/www.iksz.eu\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.iksz.eu\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.iksz.eu\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/cropped-ginop_iksz.png\",\"contentUrl\":\"https:\\\/\\\/www.iksz.eu\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/cropped-ginop_iksz.png\",\"width\":1125,\"height\":250,\"caption\":\"Info Kommunik\u00e1ci\u00f3s Szakszervezet \\\/ IKSZ\"},\"image\":{\"@id\":\"https:\\\/\\\/www.iksz.eu\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Felezz.hu - Info Kommunik\u00e1ci\u00f3s Szakszervezet","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.iksz.eu\/en\/felezz-hu\/","og_locale":"en_GB","og_type":"article","og_title":"Felezz.hu - Info Kommunik\u00e1ci\u00f3s Szakszervezet","og_url":"https:\/\/www.iksz.eu\/en\/felezz-hu\/","og_site_name":"Info Kommunik\u00e1ci\u00f3s Szakszervezet","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.iksz.eu\/felezz-hu\/","url":"https:\/\/www.iksz.eu\/felezz-hu\/","name":"Felezz.hu - Info Kommunik\u00e1ci\u00f3s Szakszervezet","isPartOf":{"@id":"https:\/\/www.iksz.eu\/#website"},"datePublished":"2026-05-19T11:11:07+00:00","breadcrumb":{"@id":"https:\/\/www.iksz.eu\/felezz-hu\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.iksz.eu\/felezz-hu\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.iksz.eu\/felezz-hu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Kezd\u0151lap","item":"https:\/\/www.iksz.eu\/"},{"@type":"ListItem","position":2,"name":"Felezz.hu"}]},{"@type":"WebSite","@id":"https:\/\/www.iksz.eu\/#website","url":"https:\/\/www.iksz.eu\/","name":"Info Communication Trade Union \/ ICFTU","description":"","publisher":{"@id":"https:\/\/www.iksz.eu\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.iksz.eu\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/www.iksz.eu\/#organization","name":"Info Communication Trade Union \/ ICFTU","url":"https:\/\/www.iksz.eu\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.iksz.eu\/#\/schema\/logo\/image\/","url":"https:\/\/www.iksz.eu\/wp-content\/uploads\/2025\/01\/cropped-ginop_iksz.png","contentUrl":"https:\/\/www.iksz.eu\/wp-content\/uploads\/2025\/01\/cropped-ginop_iksz.png","width":1125,"height":250,"caption":"Info Kommunik\u00e1ci\u00f3s Szakszervezet \/ IKSZ"},"image":{"@id":"https:\/\/www.iksz.eu\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.iksz.eu\/en\/wp-json\/wp\/v2\/pages\/1503","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.iksz.eu\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.iksz.eu\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.iksz.eu\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.iksz.eu\/en\/wp-json\/wp\/v2\/comments?post=1503"}],"version-history":[{"count":1,"href":"https:\/\/www.iksz.eu\/en\/wp-json\/wp\/v2\/pages\/1503\/revisions"}],"predecessor-version":[{"id":1504,"href":"https:\/\/www.iksz.eu\/en\/wp-json\/wp\/v2\/pages\/1503\/revisions\/1504"}],"wp:attachment":[{"href":"https:\/\/www.iksz.eu\/en\/wp-json\/wp\/v2\/media?parent=1503"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}