<link href='https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap' rel='stylesheet'>{"id":356,"date":"2019-03-18T13:36:21","date_gmt":"2019-03-18T12:36:21","guid":{"rendered":"http:\/\/www.miglio608.com\/area-camper\/"},"modified":"2026-02-04T14:21:28","modified_gmt":"2026-02-04T13:21:28","slug":"area-camper","status":"publish","type":"page","link":"https:\/\/www.miglio608.com\/en\/area-camper\/","title":{"rendered":"Camper area"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row][vc_column][vc_single_image image=&#8221;29&#8243; alignment=&#8221;center&#8221; css=&#8221;.vc_custom_1553015282601{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}&#8221; image_hovers=&#8221;false&#8221; lazy_loading=&#8221;true&#8221;][vc_custom_heading text=&#8221;camper area&#8221; font_container=&#8221;tag:h4|text_align:center&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;webcam&#8221;][\/vc_column][\/vc_row][vc_row type=&#8221;vc_default&#8221; el_id=&#8221;camp_shorcode&#8221;][vc_column offset=&#8221;vc_hidden-lg vc_hidden-md&#8221;][vc_column_text css=&#8221;&#8221;]<\/p>\n<p style=\"text-align: center;\">            <div class=\"camp-availability-badge\" style=\"background-color: #97272d; border: 4px solid #ffffff; border-radius: 50%; aspect-ratio: 1\/1; min-width: 140px; padding: 36px; font-size: 100px; box-shadow: 0px 15px 30px 5px rgba(0,0,0,0.25); color: #ffffff; font-family: &#039;Montserrat&#039;, sans-serif; text-align: center; line-height: 1; box-sizing: border-box; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; transition: all 0.3s ease;\">\n                <div style=\"font-size: 0.2em; font-weight: 700; margin-top: 1em;\">&nbsp;&nbsp;&nbsp;FREE PITCHES&nbsp;&nbsp;&nbsp;<\/div>\n                <div style=\"font-weight: 800;\"><span class=\"cm-live-available\">0<\/span><br><\/div>\n                <div style=\"font-size: 0.15em; opacity: 0.8; font-weight: 400;\"><span class=\"cm-live-time\">2026-09-12 04:30:29<\/span><\/div>\n            <\/div>\n                \n        <!-- Script for \"Adaptive Smart Polling\" -->\n        <!-- Script per \"Polling Adattivo Intelligente\" -->\n        <script>\n        (function() {\n            \/\/ Configuration \/ Configurazione\n            var ajaxBase = \"https:\/\/www.miglio608.com\/wp-admin\/admin-ajax.php\";\n\n            \/\/ Interval Settings (ms) \/ Impostazioni Intervalli (ms)\n            var pollingDelayActive = 5000;   \/\/ Page active \/ Pagina attiva (Fast update)\n            var pollingDelayHidden = 30000;  \/\/ Tab hidden \/ Tab nascosto (Save resources)\n            var pollingDelayError  = 60000;  \/\/ Network error \/ Errore rete (Slow retry)\n\n            \/\/ State variables \/ Variabili di stato\n            var timeoutRef = null;\n            var isFetching = false; \/\/ Prevents overlapping requests \/ Previene richieste sovrapposte\n            var lastDataHash = null; \/\/ Stores last data signature to detect changes \/ Memorizza ultima firma dati per rilevare cambi\n\n            \/**\n             * Schedules the next polling call using setTimeout.\n             * Using setTimeout recursively is better than setInterval as it prevents queue pile-up.\n             * Pianifica la prossima chiamata di polling usando setTimeout.\n             * Usare setTimeout ricorsivamente \u00e8 meglio di setInterval perch\u00e9 evita accumuli in coda.\n             *\/\n            function scheduleNext(delay) {\n                clearTimeout(timeoutRef);\n                timeoutRef = setTimeout(fetchCampData, delay);\n            }\n\n            \/**\n             * Animates a number from start value to end value.\n             * Provides a smooth visual transition for the user.\n             * Anima un numero dal valore iniziale al finale.\n             * Fornisce una transizione visiva fluida per l'utente.\n             *\/\n            function animateNumber(el, start, end, duration) {\n                var startTime = null;\n                function animation(currentTime) {\n                    if (!startTime) startTime = currentTime;\n                    var progress = currentTime - startTime;\n                    var percent = Math.min(progress \/ duration, 1);\n                    \/\/ Simple linear interpolation \/ Interpolazione lineare semplice\n                    el.textContent = Math.floor(start + (end - start) * percent);\n                    if (percent < 1) {\n                        requestAnimationFrame(animation);\n                    }\n                }\n                requestAnimationFrame(animation);\n            }\n\n            \/**\n             * Updates all badge instances on the page.\n             * Supports multiple badges in the same page.\n             * Aggiorna tutte le istanze del badge nella pagina.\n             * Supporta badge multipli nella stessa pagina.\n             *\/\n            function updateAllBadges(data) {\n                var badges = document.querySelectorAll('.camp-availability-badge');\n\n                badges.forEach(function(badge) {\n                    var elAv = badge.querySelector('.cm-live-available');\n                    var elTi = badge.querySelector('.cm-live-time');\n\n                    if (!elAv || !elTi) return;\n\n                    var currentValue = parseInt(elAv.textContent) || 0;\n                    var newValue = parseInt(data.available);\n\n                    \/\/ Animate only if value changed \/ Anima solo se il valore \u00e8 cambiato\n                    if (currentValue !== newValue) {\n                        animateNumber(elAv, currentValue, newValue, 600);\n                    }\n\n                    \/\/ Update timestamp \/ Aggiorna timestamp\n                    if (elTi.textContent !== data.time) {\n                        elTi.textContent = data.time;\n                    }\n                });\n            }\n\n            \/**\n             * Main Polling Function.\n             * Fetches data from server via AJAX with cache busting.\n             * Funzione Principale di Polling.\n             * Recupera dati dal server via AJAX con bypass della cache.\n             *\/\n            function fetchCampData() {\n                \/\/ If already busy, skip \/ Se gi\u00e0 occupato, salta\n                if (isFetching) return;\n                \n                \/\/ If offline, slow down polling \/ Se offline, rallenta il polling\n                if (!navigator.onLine) {\n                    scheduleNext(pollingDelayError);\n                    return;\n                }\n\n                isFetching = true;\n\n                \/\/ Unique URL generation to bypass browser cache\n                \/\/ Generazione URL unico per bypassare cache del browser\n                var uniqueUrl = ajaxBase + \"?_nocache=\" + Date.now();\n                var formData = new URLSearchParams();\n                formData.append('action', 'cm_get_live_data');\n\n                fetch(uniqueUrl, {\n                    method: 'POST',\n                    cache: 'no-store',\n                    headers: {\n                        'Content-Type': 'application\/x-www-form-urlencoded'\n                    },\n                    body: formData\n                })\n                .then(response => {\n                    if (!response.ok) throw new Error(\"Network error\");\n                    return response.json();\n                })\n                .then(data => {\n                    \/\/ Create a simple hash of the data content\n                    \/\/ Crea un hash semplice del contenuto dei dati\n                    var currentHash = data.available + \"_\" + data.time;\n\n                    \/\/ Only update DOM if data actually changed (Performance optimization)\n                    \/\/ Aggiorna il DOM solo se i dati sono cambiati davvero (Ottimizzazione performance)\n                    if (currentHash !== lastDataHash) {\n                        updateAllBadges(data);\n                        lastDataHash = currentHash;\n                    }\n\n                    isFetching = false;\n                    \n                    \/\/ Adaptive Scheduling: Slow down if tab is hidden\n                    \/\/ Schedulazione Adattiva: Rallenta se il tab \u00e8 nascosto\n                    scheduleNext(document.hidden ? pollingDelayHidden : pollingDelayActive);\n                })\n                .catch(err => {\n                    console.warn(\"CampMaster polling error:\", err);\n                    isFetching = false;\n                    \/\/ On error, wait longer before retry \/ In caso di errore, aspetta di pi\u00f9 prima di riprovare\n                    scheduleNext(pollingDelayError);\n                });\n            }\n\n            \/\/ Start polling immediately \/ Avvia polling immediatamente\n            fetchCampData();\n\n            \/\/ EVENT LISTENERS FOR INTELLIGENT BEHAVIOR\n            \/\/ EVENT LISTENERS PER COMPORTAMENTO INTELLIGENTE\n\n            \/\/ 1. Tab visibility change (User switches tabs)\n            \/\/ 1. Cambio visibilit\u00e0 tab (Utente cambia tab)\n            document.addEventListener(\"visibilitychange\", function() {\n                if (!document.hidden) {\n                    \/\/ User came back! Fetch immediately and reset timer\n                    \/\/ Utente tornato! Scarica subito e resetta timer\n                    fetchCampData();\n                }\n            });\n\n            \/\/ 2. Page loaded from BFCache (Back-Forward Cache on mobile)\n            \/\/ 2. Pagina caricata da BFCache (Back-Forward Cache su mobile)\n            window.addEventListener(\"pageshow\", function(event) {\n                if (event.persisted) {\n                    fetchCampData();\n                }\n            });\n\n            \/\/ 3. Network connection restored\n            \/\/ 3. Connessione rete ripristinata\n            window.addEventListener(\"online\", function() {\n                fetchCampData();\n            });\n\n        })();\n        <\/script>\n        <\/p>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column width=&#8221;1\/2&#8243;][vc_column_text]<strong>Area description<\/strong>:<br \/>\n&#8211; Discharge of black and gray water (heated, antifreeze)<br \/>\n&#8211; Drinking water recharge<br \/>\n&#8211; Large parking areas<br \/>\n&#8211; Electric columns with consumption-based tariff<br \/>\n&#8211; Covered picnic area, free wifi<\/p>\n<p><strong>Additional services<\/strong>: use of showers at additional cost. Access to toilets area included in parking rate.<br \/>\nAn e-bike maintenance and recharge station is available for cyclists.[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/2&#8243;][vc_column_text css=&#8221;&#8221;]<strong>Disabled people<\/strong>: access to disabled bathroom.<\/p>\n<p><strong>Rates<\/strong>:<br \/>\n&#8211; Camper service: 4 Euro (45 minutes of parking included)<br \/>\n&#8211; Parking 12 hours: 8 Euro<br \/>\n&#8211; Parking: 24 hours: 15 Euro<br \/>\n&#8211; Electric connection: 0.80 Euro\/kWh<\/p>\n<p><strong>Opening<\/strong>: 24\/7 accessible area.<br \/>\nAccess to the area through automatic pay station.[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][vc_media_grid element_width=&#8221;2&#8243; grid_id=&#8221;vc_gid:1770211244756-f58bc78a-5fa8-6&#8243; include=&#8221;564,566,569,571,576,608,581,586,588,592,609,611&#8243;][\/vc_column][\/vc_row][vc_row][vc_column][vc_custom_heading text=&#8221;bike area&#8221; font_container=&#8221;tag:h4|text_align:center|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221; css=&#8221;.vc_custom_1553783442761{background-color: #97272d !important;}&#8221;][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space][\/vc_column][\/vc_row][vc_row type=&#8221;vc_default&#8221; equal_height=&#8221;yes&#8221; content_placement=&#8221;middle&#8221;][vc_column width=&#8221;1\/3&#8243;][vc_single_image image=&#8221;194&#8243; img_size=&#8221;380&#215;380&#8243; alignment=&#8221;center&#8221; css=&#8221;.vc_custom_1553016579065{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}&#8221; image_hovers=&#8221;false&#8221; lazy_loading=&#8221;true&#8221; el_class=&#8221;webcam&#8221;][\/vc_column][vc_column width=&#8221;1\/3&#8243;][vc_column_text]<strong>Cycling tourists<\/strong>: a free access maintenance column is available with tools for basic maintenance and a tire inflation pump.<\/p>\n<p><strong>E-bike recharge<\/strong> with consumption-based rate (3 Schuko and two-pass sockets). For the electric recharge it is sufficient to load the necessary credit to the automatic cash dispenser that will supply the electronic badge with which the recharging station is activated.<\/p>\n<p><strong>Rate<\/strong>: around 0.5 Euro for a full charge (hypothetical 500Wh battery). Any credits loaded on the badge that are not consumed will be returned by the ATM when the badge is returned.[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/3&#8243;][vc_single_image image=&#8221;193&#8243; img_size=&#8221;164&#215;380&#8243; alignment=&#8221;center&#8221; css=&#8221;.vc_custom_1553016585642{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}&#8221; image_hovers=&#8221;false&#8221; lazy_loading=&#8221;true&#8221; el_class=&#8221;webcam&#8221;][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space][\/vc_column][\/vc_row][vc_row anchor=&#8221;servizi&#8221;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_custom_heading text=&#8221;services&#8221; font_container=&#8221;tag:h4|text_align:center|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221; css=&#8221;.vc_custom_1553785020174{background-color: #97272d !important;}&#8221;][\/vc_column][\/vc_row][vc_row][vc_column width=&#8221;1\/5&#8243;][vc_single_image image=&#8221;30&#8243; alignment=&#8221;center&#8221; onclick=&#8221;custom_link&#8221; css=&#8221;.vc_custom_1553785039913{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}&#8221; image_hovers=&#8221;false&#8221; lazy_loading=&#8221;true&#8221; link=&#8221;http:\/\/www.miglio608.com\/en\/affitto-camere\/&#8221;][vc_custom_heading text=&#8221;rent rooms&#8221; font_container=&#8221;tag:h4|text_align:center&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;webcam&#8221; link=&#8221;url:http%3A%2F%2Fwww.miglio608.com%2Fen%2Faffitto-camere%2F|||&#8221;][\/vc_column][vc_column width=&#8221;1\/5&#8243;][vc_single_image image=&#8221;29&#8243; alignment=&#8221;center&#8221; css=&#8221;.vc_custom_1553015282601{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}&#8221; image_hovers=&#8221;false&#8221; lazy_loading=&#8221;true&#8221;][vc_custom_heading text=&#8221;camper area&#8221; font_container=&#8221;tag:h4|text_align:center&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;webcam&#8221;][\/vc_column][vc_column width=&#8221;1\/5&#8243;][vc_single_image image=&#8221;28&#8243; alignment=&#8221;center&#8221; onclick=&#8221;custom_link&#8221; css=&#8221;.vc_custom_1553785058504{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}&#8221; image_hovers=&#8221;false&#8221; lazy_loading=&#8221;true&#8221; link=&#8221;http:\/\/www.miglio608.com\/en\/area-bici\/&#8221;][vc_custom_heading text=&#8221;bike area&#8221; font_container=&#8221;tag:h4|text_align:center&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;webcam&#8221; link=&#8221;url:http%3A%2F%2Fwww.miglio608.com%2Fen%2Farea-bici%2F|title:Area%20bici||&#8221;][\/vc_column][vc_column width=&#8221;1\/5&#8243;][vc_single_image image=&#8221;27&#8243; alignment=&#8221;center&#8221; onclick=&#8221;custom_link&#8221; css=&#8221;.vc_custom_1553785094500{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}&#8221; image_hovers=&#8221;false&#8221; lazy_loading=&#8221;true&#8221; link=&#8221;http:\/\/www.miglio608.com\/en\/bagni-e-docce\/&#8221;][vc_custom_heading text=&#8221;toilets and showers&#8221; font_container=&#8221;tag:h4|text_align:center&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;webcam&#8221; link=&#8221;url:http%3A%2F%2Fwww.miglio608.com%2Fen%2Fbagni-e-docce%2F|title:Bagni%20e%20docce||&#8221;][\/vc_column][vc_column width=&#8221;1\/5&#8243;][vc_single_image image=&#8221;739&#8243; alignment=&#8221;center&#8221; onclick=&#8221;custom_link&#8221; css=&#8221;.vc_custom_1580229271127{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}&#8221; image_hovers=&#8221;false&#8221; lazy_loading=&#8221;true&#8221; link=&#8221;https:\/\/www.miglio608.com\/en\/affitto-portantina\/&#8221;][vc_custom_heading text=&#8221;WHEELCHAIR&#8221; font_container=&#8221;tag:h4|text_align:center&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;webcam&#8221; link=&#8221;url:https%3A%2F%2Fwww.miglio608.com%2Fen%2Faffitto-portantina%2F|||&#8221;][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space][\/vc_column][\/vc_row][vc_row anchor=&#8221;partner&#8221;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_custom_heading text=&#8221;partner&#8221; font_container=&#8221;tag:h4|text_align:center|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221; css=&#8221;.vc_custom_1552918453957{background-color: #97272d !important;}&#8221;][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space][\/vc_column][\/vc_row][vc_row][vc_column]<section class=\"logos-grid wf-container\" data-width=\"100px\" data-columns=\"6\"><div class=\"wf-cell\"><div><a class=\"layzr-bg\" href=\"http:\/\/www.laturna.it\/ristoro.asp\" target=\"_blank\" title=\"\" ><img loading=\"lazy\" decoding=\"async\" class=\"lazy-load\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0 241 228&#039;%2F%3E\" width=\"241\" height=\"228\" alt=\"Vertical Rock\" data-srcset=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/partner1.jpg 241w\" data-src=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/partner1.jpg\" \/><\/a><\/div><\/div><div class=\"wf-cell\"><div><a class=\"layzr-bg\" href=\"https:\/\/www.poseidonespa.it\/\" target=\"_blank\" title=\"\" ><img loading=\"lazy\" decoding=\"async\" class=\"lazy-load\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0 150 150&#039;%2F%3E\" width=\"150\" height=\"150\" alt=\"Poseidone\" data-srcset=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/logo_poseidone.jpg 150w\" data-src=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/logo_poseidone.jpg\" \/><\/a><\/div><\/div><div class=\"wf-cell\"><div><a class=\"layzr-bg\" href=\"http:\/\/www.laturna.it\/parco_avventura.asp\" target=\"_blank\" title=\"\" ><img loading=\"lazy\" decoding=\"async\" class=\"lazy-load\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0 241 180&#039;%2F%3E\" width=\"241\" height=\"180\" alt=\"Parco avventura La Turna\" data-srcset=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/partner3.jpg 241w\" data-src=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/partner3.jpg\" \/><\/a><\/div><\/div><div class=\"wf-cell\"><div><a class=\"layzr-bg\" href=\"http:\/\/www.francigenasigerico.it\/\" target=\"_blank\" title=\"\" ><img loading=\"lazy\" decoding=\"async\" class=\"lazy-load\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0 241 100&#039;%2F%3E\" width=\"241\" height=\"100\" alt=\"La Via Francigena di Sigerico\" data-srcset=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/partner5.jpg 241w\" data-src=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/partner5.jpg\" \/><\/a><\/div><\/div><div class=\"wf-cell\"><div><a class=\"layzr-bg\" href=\"http:\/\/www.campeggiatori-gec-ivrea.it\/\" target=\"_blank\" title=\"\" ><img loading=\"lazy\" decoding=\"async\" class=\"lazy-load\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0 122 118&#039;%2F%3E\" width=\"122\" height=\"118\" alt=\"Gruppo Eporediese Campeggiatori\" data-srcset=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/Immagine2-1.png 122w\" data-src=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/Immagine2-1.png\" \/><\/a><\/div><\/div><div class=\"wf-cell\"><div><a class=\"layzr-bg\" href=\"http:\/\/www.farinelontheroad.com\/\" target=\"_blank\" title=\"\" ><img loading=\"lazy\" decoding=\"async\" class=\"lazy-load\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0 180 180&#039;%2F%3E\" width=\"180\" height=\"180\" alt=\"Farinel On The Road\" data-srcset=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/logo_farinel.png 180w\" data-src=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/logo_farinel.png\" \/><\/a><\/div><\/div><div class=\"wf-cell\"><div><a class=\"layzr-bg\" href=\"http:\/\/www.laturna.it\/arrampicata.asp\" target=\"_blank\" title=\"\" ><img loading=\"lazy\" decoding=\"async\" class=\"lazy-load\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0 241 216&#039;%2F%3E\" width=\"241\" height=\"216\" alt=\"Falesia di arrampicata\" data-srcset=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/partner2.jpg 241w\" data-src=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/partner2.jpg\" \/><\/a><\/div><\/div><div class=\"wf-cell\"><div><a class=\"layzr-bg\" href=\"http:\/\/www.alberomaestro.it\/\" target=\"_blank\" title=\"\" ><img loading=\"lazy\" decoding=\"async\" class=\"lazy-load\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0 122 108&#039;%2F%3E\" width=\"122\" height=\"108\" alt=\"B&#038;B Albero Maestro\" data-srcset=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/Immagine1-1.png 122w\" data-src=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/Immagine1-1.png\" \/><\/a><\/div><\/div><div class=\"wf-cell\"><div><a class=\"layzr-bg\" href=\"https:\/\/agricolaturna.it\/\" target=\"_blank\" title=\"\" ><img loading=\"lazy\" decoding=\"async\" class=\"lazy-load\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0 362 406&#039;%2F%3E\" width=\"362\" height=\"406\" alt=\"Azienda agricola La Turna\" data-srcset=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/logolaturna.jpeg 362w\" data-src=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/logolaturna.jpeg\" \/><\/a><\/div><\/div><div class=\"wf-cell\"><div><a class=\"layzr-bg\" href=\"http:\/\/www.amemi.net\/\" target=\"_blank\" title=\"\" ><img loading=\"lazy\" decoding=\"async\" class=\"lazy-load\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0 218 100&#039;%2F%3E\" width=\"218\" height=\"100\" alt=\"A me mi\" data-srcset=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/partner4.jpg 218w\" data-src=\"https:\/\/www.miglio608.com\/wp-content\/uploads\/partner4.jpg\" \/><\/a><\/div><\/div><\/section>[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space][\/vc_column][\/vc_row][vc_row anchor=&#8221;contatti&#8221;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_custom_heading text=&#8221;contacts&#8221; font_container=&#8221;tag:h4|text_align:center|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221; css=&#8221;.vc_custom_1553783528651{background-color: #97272d !important;}&#8221;][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space][\/vc_column][\/vc_row][vc_row type=&#8221;vc_default&#8221; equal_height=&#8221;yes&#8221; content_placement=&#8221;middle&#8221;][vc_column width=&#8221;1\/2&#8243;][vc_column_text]<\/p>\n<h5><b>ADDRESS:<\/b><\/h5>\n<p>Via Rua n.1 frazione Montestrutto<\/p>\n<p>10010 \u2013 Settimo Vittone (TO)<\/p>\n<p>GPS: <a href=\"https:\/\/goo.gl\/maps\/SWgYXtQpExTQ4HNa7\" target=\"_blank\" rel=\"noopener noreferrer\">45.537409, 7.841402<\/a><\/p>\n<p>Altitude: 168m<\/p>\n<h5><b>OPENING:<\/b><\/h5>\n<p>Area always open 24h-24h every day<\/p>\n<p>Access to paid services by automatic payment machine<\/p>\n<p>Telephone room booking<\/p>\n<h5><b>CONTACT:<\/b><\/h5>\n<p><a href=\"tel:+393484942902\">+39-348-4942902<\/a><\/p>\n<p><a href=\"http:\/\/www.miglio608.com\" target=\"_blank\" rel=\"noopener noreferrer\">www.miglio608.com<\/a><\/p>\n<p><a href=\"mailto:info@miglio608.com\">info@miglio608.com<\/a>[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/2&#8243;][vc_column_text]<style type=\"text\/css\" id=\"gmpMapStyles_1_72617\">\r\n\t#google_map_easy_1_72617 {\r\n        width: 100%;\r\n        height: 500px;\r\n\t\t\t\t\t\t    }\r\n\t#gmapControlsNum_1_72617 {\r\n\t\twidth:100%\t}\r\n\t.gmpMapDetailsContainer#gmpMapDetailsContainer_1_72617 {\r\n\t\theight:500px;\r\n\t}\r\n\t.gmp_MapPreview#google_map_easy_1_72617 {\r\n\t\t\/*position:absolute;*\/\r\n\t\twidth: 100%;\r\n\t}\r\n\t#mapConElem_1_72617{\r\n\t\twidth: 100%\t}\r\n    .gm-style .gm-style-iw-c{\r\n        padding: 12px!important;\r\n    }\r\n\t    <\/style>\r\n <div class=\"gmp_map_opts\" id=\"mapConElem_1_72617\" data-id=\"1\" data-view-id=\"1_72617\" > <div class=\"gmpMapDetailsContainer\" id=\"gmpMapDetailsContainer_1_72617\"> <i class=\"gmpKMLLayersPreloader fa fa-spinner fa-spin\" aria-hidden=\"true\" style=\"display: none;\"><\/i> <div class=\"gmp_MapPreview \" id=\"google_map_easy_1_72617\"><\/div> <\/div> <div class=\"gmpMapMarkerFilters\" id=\"gmpMapMarkerFilters_1_72617\"> <\/div> <div class=\"gmpMapProControlsCon\" id=\"gmpMapProControlsCon_1_72617\"> <\/div> <div class=\"gmpMapProDirectionsCon\" id=\"gmpMapProDirectionsCon_1_72617\" > <\/div> <div class=\"gmpMapProKmlFilterCon\" id=\"gmpMapProKmlFilterCon_1_72617\" > <\/div> <div class=\"gmpSocialSharingShell gmpSocialSharingShell_1_72617\"> <\/div> <div style=\"clear: both;\"><\/div> <\/div> [\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column][vc_single_image image=&#8221;29&#8243; alignment=&#8221;center&#8221; css=&#8221;.vc_custom_1553015282601{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}&#8221; image_hovers=&#8221;false&#8221; lazy_loading=&#8221;true&#8221;][vc_custom_heading text=&#8221;camper area&#8221; font_container=&#8221;tag:h4|text_align:center&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;webcam&#8221;][\/vc_column][\/vc_row][vc_row type=&#8221;vc_default&#8221; el_id=&#8221;camp_shorcode&#8221;][vc_column offset=&#8221;vc_hidden-lg vc_hidden-md&#8221;][vc_column_text css=&#8221;&#8221;] [\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column width=&#8221;1\/2&#8243;][vc_column_text]Area description: &#8211; Discharge of black and gray water (heated, antifreeze) &#8211; Drinking water recharge &#8211; Large parking areas &#8211; Electric columns with consumption-based tariff &#8211; Covered picnic area, free wifi Additional&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-356","page","type-page","status-publish","hentry","description-off"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.miglio608.com\/en\/wp-json\/wp\/v2\/pages\/356","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.miglio608.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.miglio608.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.miglio608.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.miglio608.com\/en\/wp-json\/wp\/v2\/comments?post=356"}],"version-history":[{"count":12,"href":"https:\/\/www.miglio608.com\/en\/wp-json\/wp\/v2\/pages\/356\/revisions"}],"predecessor-version":[{"id":1528,"href":"https:\/\/www.miglio608.com\/en\/wp-json\/wp\/v2\/pages\/356\/revisions\/1528"}],"wp:attachment":[{"href":"https:\/\/www.miglio608.com\/en\/wp-json\/wp\/v2\/media?parent=356"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}