<div id="map" style="height: 600px; width: 100%; margin-bottom: 40px;"></div>
            <!-- Scripts -->
            <script>
                function initMap(){
                    const serviceCenters = [{"address":"95 Griva Digheni Av., 6043 Larnaka","phone":"+ 357-24204000","fax":"24204029","email":"amc-larnaca@eac.com.cy","description":"Network Users Service Hours","additional_info":[{"title":"Winter Timetable:   (5\/9\/2022 - 4\/6\/2023)\u200b","values":["Mon. - Friday        07:45 - 13:45","Tues. + Thurs.      15:00 - 17:15"]},{"title":"\u200bSummer Timetable(5\/6\/2023 - 3\/9\/2023):","values":["Mon. - Friday        07:45 - 13:45"]},{"title":"Services Offered","values":["Guidance on the appropriate type of connection application, tailored to the customer's specific needs and project requirements.","Support throughout the application process, including assistance with accurate form completion and identification of all necessary supporting documentation.","Tracking and status updates for submitted applications, including retrieval of the application reference number and direction to the relevant EAC department for further inquiries.","Facilitation of application updates or modifications to reflect changes in customer requirements or project scope.","Communication of the issued application reference number following successful registration in EAC's systems, via telephone, email, or directly through the customer's licensed electrician.\u200b"]}],"lat":34.9254866,"lng":33.6079124},{"address":"87 Eleftheriou Venizelou Av., 8021 Pafos","phone":"80006001","fax":"+357 26 20 60 09\u200b","email":"amc-pafos@eac.com.cy","description":"Network Users Service Hours","additional_info":[{"title":"Winter Timetable  (5\/9\/2022 - 4\/6\/2023):","values":["Mon. - Friday.     07:45 - 13:45 ","Tues. + Thurs.  15:00 - 17:15 "]},{"title":"Summer Timetable (5\/6\/2023 - 3\/9\/2023):","values":["Mon. - Friday      7:45 - 13:45"]}],"lat":34.7834731,"lng":32.4409768},{"address":"55 Ag. Andreou Str., 3036 Lemesos","phone":"80006001","fax":"+357-25 20 50 09\u200b","email":"amc-lemesos@eac.com.cy","description":"Network Users Service Hours","additional_info":[{"title":"Winter Timetable:  (5\/9\/2022 - 4\/6\/2023)","values":["Mon - Friday     07:45 - 13:45","Tues. + Thurs.  15:00 - 17:15 "]},{"title":"Services Offered","values":["Guidance on the appropriate type of connection application, tailored to the customer's specific needs and project requirements.","Support throughout the application process, including assistance with accurate form completion and identification of all necessary supporting documentation.","Tracking and status updates for submitted applications, including retrieval of the application reference number and direction to the relevant EAC department for further inquiries.","Facilitation of application updates or modifications to reflect changes in customer requirements or project scope.","Communication of the issued application reference number following successful registration in EAC's systems, via telephone, email, or directly through the customer's licensed electrician.\u200b"]}],"lat":34.67442460000001,"lng":33.0454036},{"address":"15 Foti Pitta Str.,1065, P.O.Box 21413, 1508 Nicosia","phone":"80006001","fax":"+357-22202009","email":"amc-lefkosia@eac.com.cy","description":"Network Users Service Hours","additional_info":[{"title":"The customer services provided:","values":["- Guidance on the appropriate type of connection application, tailored to the customer's specific needs and project requirements.","- Support throughout the application process, including assistance with accurate form completion and identification of all necessary supporting documentation.","- Tracking and status updates for submitted applications, including retrieval of the application reference number and direction to the relevant EAC department for further inquiries.","- Facilitation of application updates or modifications to reflect changes in customer requirements or project scope.","- Communication of the issued application reference number following successful registration in EAC's systems, via telephone, email, or directly through the customer's licensed electrician.\u200b"]}],"lat":35.1646883,"lng":33.3621561}];
                    const labels = {"phone":"Phone","fax":"Fax","email":"Email","address":"Address","contact_us":"Contact Us"};
                    const channel = "distribution-service";
                    const contactUsUrl = "\/en\/supply\/we-are-always-here-for-you\/";

                    const map = new google.maps.Map(document.getElementById("map"), {
                        zoom: 9,
                        center: { lat: 35.1856, lng: 33.3823 }, // Default center (Nicosia)
                    });

                    const infoWindow = new google.maps.InfoWindow();

                    serviceCenters.forEach(center => {
                        const location = { lat: parseFloat(center.lat), lng: parseFloat(center.lng) };

                        const marker = new google.maps.Marker({
                            map: map,
                            position: { lat: center.lat, lng: center.lng },
                            title: center.address,
                            icon: {
                                url: "https://pilot.eac.com.cy/app/themes/eac-child-theme/includes/images/eac-map-marker.png",
                                scaledSize: new google.maps.Size(28, 34)
                            }
                        });

                        marker.addListener("click", () => {
                            // Build additional info dynamically
                            let additionalHtml = "";
                            if (center.additional_info && center.additional_info.length > 0) {
                                center.additional_info.forEach(info => {
                                    additionalHtml += `
                                        <div class="info-block">
                                            <div class="info-title">${info.title}</div>
                                            <div>
                                                ${info.values.map(val => `${val}<br/>`).join("")}
                                            </div>
                                        </div><br/>
                                    `;
                                });
                            }

                            // Final content for info window
                            infoWindow.setContent(`
                                <div class="custom-infowindow">
                                    <div class="info-row"><span class="label">${labels.address}</span><br/>${center.address}</div><br/>
                                    ${center.phone ? `<div class="info-row"><span class="label">${labels.phone}: </span>${center.phone}</div>` : ""}
                                    ${center.fax ? `<div class="info-row"><span class="label">${labels.fax}: </span>${center.fax}</div>` : ""}
                                    ${channel === "supply-service" ? `<div class="info-row"><a target="_blank" href="${contactUsUrl}" class="email-value">${labels.contact_us}</a></div>` : (center.email ? `<div class="info-row"><span class="label">${labels.email}: </span><span class="email-value"><a href="mailto:${center.email}">${center.email}</a></span></div>` : "")}<br/>
                                    ${center.description ? `<div class="info-row">${center.description}</div><br/>` : ""}
                                    ${additionalHtml}
                                </div>
                            `);

                            infoWindow.open(map, marker);
                        });
                    });
                }
            </script>
            <!-- Load Google Maps JavaScript API -->
            <script async defer
                src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDFfj9VPS-BFSSnDyGOa1RMck50LjkMTjc&callback=initMap">
            </script>
            <style>
                .page-id-1309 #section-1-editor {
                    padding-bottom: 0px;
                }
                .custom-infowindow {
                    font-family: Arial, sans-serif;
                    font-size: 12px;
                    line-height: 1.4;
                    max-width: 250px;
                    padding: 5px;
                    margin: 0;
                }
                .custom-infowindow .location-title {
                    font-size: 14px;
                    font-weight: bold;
                    color: #333;
                    margin-bottom: 6px;
                }
                .custom-infowindow .label {
                    font-weight: bold;
                }
                .custom-infowindow .info-row {
                    margin-bottom: 4px;
                }
                .custom-infowindow .info-block .info-title {
                    font-weight: bold;
                }
                .custom-infowindow .email-value a {
                    color: #0099D8;
                    text-decoration: none;
                }
                .gm-ui-hover-effect>span {
                    width: 17px !important;
                    height: 17px !important;
                }
                .gm-ui-hover-effect {
                    width: 37px !important;
                    height: 22px !important;
                }
            </style>
        {"id":1333,"date":"2025-09-22T09:34:13","date_gmt":"2025-09-22T09:34:13","guid":{"rendered":"https:\/\/eac-web.dgmedialink.com\/?page_id=1333"},"modified":"2025-10-20T13:07:49","modified_gmt":"2025-10-20T13:07:49","slug":"customer-service-centers-eac-distribution-service","status":"publish","type":"page","link":"https:\/\/pilot.eac.com.cy\/en\/distribution\/customer-service-centers-eac-distribution-service\/","title":{"rendered":"Customer Service Centers EAC Distribution Service"},"content":{"rendered":"","protected":false},"excerpt":{"rendered":"<p>Find the nearest EAC customer service centre. The Customer Service Representatives in our stores are always willing to find the right solutions for you.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":696,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-custom-builder.php","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-1333","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Customer Service Centers EAC Distribution Service - EAC Platform<\/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:\/\/pilot.eac.com.cy\/en\/distribution\/customer-service-centers-eac-distribution-service\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Customer Service Centers EAC Distribution Service - EAC Platform\" \/>\n<meta property=\"og:description\" content=\"Find the nearest EAC customer service centre. The Customer Service Representatives in our stores are always willing to find the right solutions for you.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pilot.eac.com.cy\/en\/distribution\/customer-service-centers-eac-distribution-service\/\" \/>\n<meta property=\"og:site_name\" content=\"EAC Platform\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-20T13:07:49+00:00\" \/>\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:\/\/pilot.eac.com.cy\/en\/distribution\/customer-service-centers-eac-distribution-service\/\",\"url\":\"https:\/\/pilot.eac.com.cy\/en\/distribution\/customer-service-centers-eac-distribution-service\/\",\"name\":\"Customer Service Centers EAC Distribution Service - EAC Platform\",\"isPartOf\":{\"@id\":\"https:\/\/pilot.eac.com.cy\/#website\"},\"datePublished\":\"2025-09-22T09:34:13+00:00\",\"dateModified\":\"2025-10-20T13:07:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/pilot.eac.com.cy\/en\/distribution\/customer-service-centers-eac-distribution-service\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/pilot.eac.com.cy\/en\/distribution\/customer-service-centers-eac-distribution-service\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/pilot.eac.com.cy\/en\/distribution\/customer-service-centers-eac-distribution-service\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/pilot.eac.com.cy\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Distribution\",\"item\":\"https:\/\/pilot.eac.com.cy\/en\/distribution\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Customer Service Centers EAC Distribution Service\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/pilot.eac.com.cy\/#website\",\"url\":\"https:\/\/pilot.eac.com.cy\/\",\"name\":\"EAC Platform\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/pilot.eac.com.cy\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Customer Service Centers EAC Distribution Service - EAC Platform","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:\/\/pilot.eac.com.cy\/en\/distribution\/customer-service-centers-eac-distribution-service\/","og_locale":"en_US","og_type":"article","og_title":"Customer Service Centers EAC Distribution Service - EAC Platform","og_description":"Find the nearest EAC customer service centre. The Customer Service Representatives in our stores are always willing to find the right solutions for you.","og_url":"https:\/\/pilot.eac.com.cy\/en\/distribution\/customer-service-centers-eac-distribution-service\/","og_site_name":"EAC Platform","article_modified_time":"2025-10-20T13:07:49+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/pilot.eac.com.cy\/en\/distribution\/customer-service-centers-eac-distribution-service\/","url":"https:\/\/pilot.eac.com.cy\/en\/distribution\/customer-service-centers-eac-distribution-service\/","name":"Customer Service Centers EAC Distribution Service - EAC Platform","isPartOf":{"@id":"https:\/\/pilot.eac.com.cy\/#website"},"datePublished":"2025-09-22T09:34:13+00:00","dateModified":"2025-10-20T13:07:49+00:00","breadcrumb":{"@id":"https:\/\/pilot.eac.com.cy\/en\/distribution\/customer-service-centers-eac-distribution-service\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pilot.eac.com.cy\/en\/distribution\/customer-service-centers-eac-distribution-service\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pilot.eac.com.cy\/en\/distribution\/customer-service-centers-eac-distribution-service\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pilot.eac.com.cy\/en\/"},{"@type":"ListItem","position":2,"name":"Distribution","item":"https:\/\/pilot.eac.com.cy\/en\/distribution\/"},{"@type":"ListItem","position":3,"name":"Customer Service Centers EAC Distribution Service"}]},{"@type":"WebSite","@id":"https:\/\/pilot.eac.com.cy\/#website","url":"https:\/\/pilot.eac.com.cy\/","name":"EAC Platform","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pilot.eac.com.cy\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"builder_sections":[{"choose_block":"editor","section_title":"","show_section_title":false,"icon_links_grid":{"columns_desktop":false,"column_bg_color":"","links":false},"simple_editor":{"editor_content":"\n<h3><span class=\"HwtZe\" lang=\"en\"><span class=\"jCAhz ChMk0b\"><span class=\"ryNqvb\">Services Offered<\/span><\/span><\/span><\/h3>\n<ul>\n<li>General guidance on the type of connection application that will be needed.<\/li>\n<li>Guidance on how to complete the application and which forms will be needed to attach together.<\/li>\n<li>Finding the application number and informing him of the stage he is at. Guidance on which EAC department he should contact for further information regarding the application.<\/li>\n<li>Differentiation of his application in the event that it needs to be changed.<\/li>\n<li>Telephone information or information via email or the customer&#8217;s electrician, regarding the application number issued after the application was registered in the EAC systems.<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n"},"text_image_links":{"columns_desktop":2,"cards":false},"image_links_overlay":{"columns_desktop":false,"items":false},"announcements":{"columns_desktop":false,"column_bg_color":"","column_border_color":"","all_link":"","all_link_text":"","items":false},"latest_news":{"columns_desktop":false,"column_bg_color":"","number_of_posts":3,"all_link":"","all_link_text":"","categories":false},"banner_link":{"banner_background_image":false,"banner_main_text":"","banner_overlay_color":"","banner_overlay_opacity":"","banner_small_text":"","use_multiple_buttons":false,"banner_button_label":"","banner_button_url":"","multiple_buttons":false},"quick_links":{"columns_desktop":false,"links":false},"image_gallery":{"columns_desktop":false,"images":false},"image_albums":{"columns_desktop":false,"galleries":false},"table_block":{"highlight_first_row":false,"columns":false,"rows":false},"file_links_list":{"file_links":false},"faq_settings":{"faq_channel":false,"faq_link_text":"","faq_link":""},"accordion":{"accordion_items":false},"youtube_channel":{"channel_id":"","max_items":9},"image_text":{"columns_desktop":1,"image_position":false,"width_ratio":false,"image_height":"","cards":false},"home_slider":{"slides":false},"mobile_app":{"app_title":"","app_description":"","app_screenshot":false,"store_links":false},"contact_flexible_block":{"layout_columns":"8-4","sidebar_1":{"sidebar_1_items":false},"sidebar_2":{"blocks_per_row":1,"block_bg_color":"","square_blocks":false}},"bill_legend":{"main_image":false,"bill_template":false,"items":false},"service_cards_grid":{"columns_desktop":2,"cards":false},"buttons_group":{"allignment":false,"layout":false,"buttons":false},"energy_tips":{"hero_title":"","hero_sub_title":"","show_as_columns":false,"hero_image":false,"hero_text":"","cards":false},"section_settings":{"hide_section":false,"margin_top":"","margin_bottom":"","padding_bottom":"","padding_top":"","section_id":"","custom_class":"","background_type":"none","background_color":"","background_image":false}}],"_links":{"self":[{"href":"https:\/\/pilot.eac.com.cy\/en\/wp-json\/wp\/v2\/pages\/1333","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pilot.eac.com.cy\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/pilot.eac.com.cy\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/pilot.eac.com.cy\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pilot.eac.com.cy\/en\/wp-json\/wp\/v2\/comments?post=1333"}],"version-history":[{"count":1,"href":"https:\/\/pilot.eac.com.cy\/en\/wp-json\/wp\/v2\/pages\/1333\/revisions"}],"predecessor-version":[{"id":6586,"href":"https:\/\/pilot.eac.com.cy\/en\/wp-json\/wp\/v2\/pages\/1333\/revisions\/6586"}],"up":[{"embeddable":true,"href":"https:\/\/pilot.eac.com.cy\/en\/wp-json\/wp\/v2\/pages\/696"}],"wp:attachment":[{"href":"https:\/\/pilot.eac.com.cy\/en\/wp-json\/wp\/v2\/media?parent=1333"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}