{"id":3510,"date":"2025-04-08T09:42:59","date_gmt":"2025-04-08T07:42:59","guid":{"rendered":"https:\/\/informatoo.com\/?post_type=info&#038;p=3510"},"modified":"2025-04-08T11:18:59","modified_gmt":"2025-04-08T09:18:59","slug":"zyperns-sandstraende","status":"publish","type":"info","link":"https:\/\/informatoo.com\/en\/info\/zyperns-sandstraende\/","title":{"rendered":"Zyperns Sandstr\u00e4nde"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>Paradie\u00adsische Sandstr\u00e4nde auf Zypern \u2013 Sonne, Meer und mediter\u00adraner Zauber<\/strong><\/h2>\n\n\n\n<p>Zypern, die dritt\u00adgr\u00f6\u00dfte Insel im Mittelmeer, ist nicht nur f\u00fcr ihre reiche Geschichte und herzliche Gastfreund\u00adschaft bekannt, sondern auch f\u00fcr ihre traum\u00adhaften Sandstr\u00e4nde. Ob du die Ruhe suchst, das kristall\u00adklare Wasser genie\u00dfen oder dich sportlich austoben m\u00f6chtest \u2013 Zyperns K\u00fcsten haben f\u00fcr jeden etwas zu bieten.<\/p>\n\n\n    <div id=\"solidara-map\" style=\"width: 95%; height: 500px\"><\/div>\n    <script src=\"https:\/\/unpkg.com\/leaflet@1.9.4\/dist\/leaflet.js\"><\/script>\n    <link rel=\"stylesheet\" href=\"https:\/\/unpkg.com\/leaflet@1.9.4\/dist\/leaflet.css\">\n    <link rel=\"stylesheet\" href=\"https:\/\/informatoo.com\/wp-content\/plugins\/solidara-map\/solidara-map.css\">\n    <link rel=\"stylesheet\" href=\"https:\/\/informatoo.com\/wp-content\/plugins\/solidara-map\/fontawesome\/css\/all.min.css\">\n\n    <script>\n    document.addEventListener(\"DOMContentLoaded\", function () {\n        const mapEl = document.getElementById(\"solidara-map\");\n        if (!mapEl) return;\n\n        const geojsonData = {\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [33.99636664868647, 34.98861219208298]\n      },\n      \"properties\": {\n        \"name\": \"Ayia Napa\",\n        \"popupContent\": \"Ayia Napa\",\n        \"marker\": {\n          \"markerUrl\" : \"red.png\",\n          \"faIcon\": \"fas fa-city\"      \n        }\n      }\n     },\n     {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [33.95530336588156, 34.98313838380084]\n      },\n      \"properties\": {\n        \"name\": \"Makronissos Beach\",\n        \"popupContent\": \"Makronissos Beach\",\n        \"marker\": {\n          \"markerUrl\" : \"blue.png\",\n          \"faIcon\": \"fas fa-umbrella-beach\",\n          \"faColor\": \"black\"\n        }\n      }\n     },\n     {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [33.958890428902535, 34.987402832169835]\n      },\n      \"properties\": {\n        \"name\": \"Landa Beach\",\n        \"popupContent\": \"Landa Beach\",\n        \"marker\": {\n          \"markerUrl\" : \"blue.png\",\n          \"faIcon\": \"fas fa-umbrella-beach\",\n          \"faColor\": \"black\"\n        }\n      }\n     },\n     {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [33.968787756775725, 34.988258561132454]\n      },\n      \"properties\": {\n        \"name\": \"Strand\",\n        \"popupContent\": \"Nissi Beach\",\n        \"marker\": {\n          \"markerUrl\" : \"blue.png\",\n          \"faIcon\": \"fas fa-umbrella-beach\",\n          \"faColor\": \"black\"  \n        }\n      }\n    }\n  ]\n};\n        const lat = 34.98822340189006;\n        const lon = 33.968787756775725;\n        const zoom = 14;\n        const height = '';\n        if (height) {\n            document.getElementById(\"solidara-map\").style.height = height;\n        }\n        const map = L.map(\"solidara-map\");\n        L.tileLayer('https:\/\/{s}.tile.openstreetmap.org\/{z}\/{x}\/{y}.png', {\n            attribution: '&copy; Solidara Digital Services EOOD | v5.40'\n        }).addTo(map);\n\n        if (zoom > 0 && lat && lon) {\n            map.setView([lat, lon], zoom);\n        } else if (geojsonData) {\n            const geojsonLayer = L.geoJSON(geojsonData);\n            geojsonLayer.addTo(map);\n            map.fitBounds(geojsonLayer.getBounds());\n        }\n\n        function addTextLabel(latlng, text, color = 'black', background = 'white', size = '14px') {\n            const label = L.divIcon({\n                className: 'custom-text-label',\n                html: `<span style=\"text-align:center; background: ${background}; color:${color}; font-size:${size}; white-space:nowrap;\">${text}<\/span>`\n            });\n            L.marker(latlng, { icon: label }).addTo(map);\n        }\n\n        function addCombinedMarker(latlng, markerUrl, faClass, draggable = false) {\n            if (!markerUrl.startsWith(\"http\")) {\n                markerUrl = \"\/wp-content\/plugins\/solidara-map\/marker\/free-map-marker-icon-\" + markerUrl;\n            }\n\n            const icon = L.divIcon({\n                className: 'custom-div-icon',\n                html: `\n                    <div style=\"position: relative; width: 78px; height: 78px;\">\n                        <img decoding=\"async\" src=\"${markerUrl}\" style=\"width: 78px; height: 78px; z-index:200;\">\n                        <i class=\"${faClass}\" style=\"position: absolute; top: 15px; font-size: 24px; color: black; z-index:201;\"><\/i>\n                    <\/div>`,\n                iconSize: [78, 78],\n                iconAnchor: [39, 78]\n            });\n\n            const marker = L.marker(latlng, { icon: icon, draggable: draggable }).addTo(map);\n\n            function updatePopup() {\n                const pos = marker.getLatLng();\n                const text = marker.popupContent || 'Position anzeigen';\n                const popupHtml = `<a href=\"#\" onclick=\"saveCoords(${pos.lat}, ${pos.lng})\">${text}<\/a>`;\n                marker.bindPopup(popupHtml);\n            }\n\n            updatePopup();\n\n            marker.on('dragend', function () {\n                updatePopup();\n                marker.openPopup();\n            });\n\n            return marker;\n        }\n\n        function addMarker(latlng, markerUrl, draggable = false) {\n            if (!markerUrl.startsWith(\"http\")) markerUrl = \"\/wp-content\/plugins\/solidara-map\/marker\/free-map-marker-icon-\" + markerUrl;\n            const icon = L.icon({\n                iconUrl: markerUrl,\n                iconSize: [78, 78],\n                iconAnchor: [39, 78]\n            });\n            const marker = L.marker(latlng, { icon: icon, draggable: draggable }).addTo(map);\n            marker.on('dragend', function () {\n                const pos = marker.getLatLng();\n                console.log(pos.lat, pos.lng);\n            });\n            return marker;\n        }\n\n        function addEmoji(latlng, emoji, top, draggable = false) {\n            const emojiIcon = L.divIcon({\n                className: 'custom-div-icon',\n                html: `<div style=\"font-size:28px; line-height:1; text-align:center; width:100%; position:relative; top:${top};\">${emoji}<\/div>`,\n                iconSize: [78, 78],\n                iconAnchor: [39, 78]\n            });\n            return L.marker(latlng, { icon: emojiIcon, draggable: draggable }).addTo(map);\n        }\n\n        function addFaIcon(latlng, faClass, top, color = '#000', draggable = false) {\n            const icon = L.divIcon({\n                className: 'custom-div-icon',\n                html: `<i class=\"${faClass}\" style=\"font-size:24px; top:${top}; color:${color};\"><\/i>`,\n                iconSize: [78, 78],\n                iconAnchor: [39, 78]\n            });\n            return L.marker(latlng, { icon: icon, draggable: draggable }).addTo(map);\n        }\n\n        function addImage(latlng, url, top, draggable = false) {\n            if (!url.startsWith(\"http\")) url = \"https:\/\/informatoo.com\/images\/\" + url;\n            const imageIcon = L.divIcon({\n                className: 'custom-div-icon',\n                html: `<img decoding=\"async\" src=\"${url}\" style=\"width:40px; height:40px; position:relative; left:21px; top:${top}; border-radius:50%;\">`,\n                iconSize: [78, 78],\n                iconAnchor: [39, 78]\n            });\n            return L.marker(latlng, { icon: imageIcon, draggable: draggable }).addTo(map);\n        }\n\n        function addPolygon(latlngs, options = {}) {\n            const color = options.color || 'blue';\n            const fillColor = options.fillColor || 'lightblue';\n            const fillOpacity = options.fillOpacity !== undefined ? options.fillOpacity : 0.3;\n            const weight = options.weight || 2;\n            const polygon = L.polygon(latlngs, { color, fillColor, fillOpacity, weight });\n            polygon.addTo(map);\n        }\n\n        function addCircle(latlng, options = {}) {\n            const radius = options.radius || 100;\n            const color = options.color || 'red';\n            const fillColor = options.fillColor || color;\n            const fillOpacity = options.fillOpacity !== undefined ? options.fillOpacity : 0.3;\n            const weight = options.weight || 2;\n            const circle = L.circle(latlng, { radius, color, fillColor, fillOpacity, weight });\n            circle.addTo(map);\n        }\n\n        function addPopup(layer, content, top = \"-60\") {\n            if (content) {\n                layer.bindPopup(content, { offset: L.point(0, top) });\n            }\n        }\n\n        if (geojsonData && geojsonData.features) {\n            geojsonData.features.forEach(feature => {\n                const type = feature.geometry.type;\n                const coords = feature.geometry.coordinates;\n                const props = feature.properties || {};\n                const latlng = [coords[1], coords[0]];\n\n                if (type === \"Polygon\") {\n                    const latlngs = coords[0].map(coord => [coord[1], coord[0]]);\n                    addPolygon(latlngs, props.style || {});\n                    return;\n                }\n\n                if (type === \"Point\" && props.circle) {\n                    addCircle(latlng, props.circle);\n                    return;\n                }\n\n                let marker;\n                if (props.marker && props.marker.markerUrl) {\n                    if (props.marker.customCombinedIcon) {\n                        marker = addCombinedMarker(latlng, props.marker.markerUrl, props.marker.faIcon, props.marker.draggable);\n                        if (marker && props.marker.popupContent) {\n                            addPopup(marker, props.marker.popupContent);\n                        }\n                    } else {\n                        marker = addMarker(latlng, props.marker.markerUrl);\n                    }\n                    \n                    if (marker) addPopup(marker, props.marker.popupContent || props.popupContent);\n                    \n                    if (!props.marker.customCombinedIcon) {\n                        let extraMarker = null;\n                        if (props.marker.emoji) {\n                            extraMarker = addEmoji(latlng, props.marker.emoji, \"12px\");\n                        } else if (props.marker.faIcon) {\n                            extraMarker = addFaIcon(latlng, props.marker.faIcon, \"14px\", props.marker.faColor);\n                        } else if (props.marker.image) {\n                            extraMarker = addImage(latlng, props.marker.image, \"8px\");\n                        }\n                        if (extraMarker) addPopup(extraMarker, props.marker.popupContent || props.popupContent);\n                    }  \n                }\n\n                if (props.textLabel) {\n                    const color = props.textColor || 'black';\n                    const size = props.textSize || '16px';\n                    const background = props.background || '';\n                    addTextLabel(latlng, props.textLabel, color, background, size, \"center\");\n                }\n\n                if (props.marker && props.marker.textLabel) {\n                    const color = props.marker.textColor || 'black';\n                    const size = props.marker.textSize || '14px';\n                    const background = props.marker.background || 'white';\n                    addTextLabel(latlng, props.marker.textLabel, color, background, size, \"center\");\n                }\n\n                if (!props.marker) {\n                    let extraMarker = null;\n                    if (props.emoji) extraMarker = addEmoji(latlng, props.emoji, \"40px\");\n                    if (props.faIcon) extraMarker = addFaIcon(latlng, props.faIcon, \"40px\", props.faColor);\n                    if (props.image) extraMarker = addImage(latlng, props.image, \"38px\");\n                    if (extraMarker) addPopup(extraMarker, props.popupContent, \"-40\");\n                }\n            });\n        }\n    });\n    <\/script>\n    \n\n\n<h3 class=\"wp-block-heading\"><strong>Nissi Beach \u2013 Der ber\u00fchm\u00adteste Strand der Insel<\/strong><\/h3>\n\n\n\n<p>Im lebhaften Ayia Napa gelegen, ist der <strong>Nissi Beach<\/strong> ein Hotspot f\u00fcr junge Urlauber und Familien gleicher\u00adma\u00dfen. Der feine, helle Sand und das t\u00fcrkis\u00adfarbene, flach abfal\u00adlende Wasser machen ihn besonders attraktiv. In der Hochsaison sorgen Beachbars, Musik und zahlreiche Wasser\u00adsport\u00adm\u00f6g\u00adlich\u00adkeiten f\u00fcr gute Stimmung. Wer fr\u00fch am Morgen kommt, erlebt den Strand fast menschenleer \u2013 ein ganz beson\u00adderer Moment.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Makro\u00adnissos Beach \u2013 Geheimtipp mit Karibik-Feeling<\/strong><\/h3>\n\n\n\n<p>Nur wenige Kilometer westlich von Ayia Napa liegt der <strong>Makro\u00adnissos Beach<\/strong>, ein weniger \u00fcberlau\u00adfener, aber ebenso traum\u00adhafter Sandstrand. Er besteht aus mehreren kleinen Buchten mit feinstem Sand und klarem Wasser, ideal f\u00fcr entspannte Badetage oder roman\u00adtische Spazier\u00adg\u00e4nge bei Sonnen\u00adun\u00adtergang. Arch\u00e4o\u00adlo\u00adgisch Inter\u00ades\u00adsierte finden in der N\u00e4he sogar antike Felsen\u00adgr\u00e4ber.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Landa Beach \u2013 Der ruhige Bruder von Nissi<\/strong><\/h3>\n\n\n\n<p>Zwischen Nissi und Makro\u00adnissos gelegen, ist der <strong>Landa Beach<\/strong> ein Geheimtipp f\u00fcr alle, die es etwas ruhiger m\u00f6gen. Trotz seiner N\u00e4he zu Ayia Napa ist dieser Strand deutlich weniger \u00fcberf\u00fcllt und bietet dennoch alles, was das Herz begehrt: feinen Sand, klares Wasser und gute Infra\u00adstruktur.<\/p>\n\n\n    <div id=\"solidara-map\" style=\"width: 95%; height: 500px\"><\/div>\n    <script src=\"https:\/\/unpkg.com\/leaflet@1.9.4\/dist\/leaflet.js\"><\/script>\n    <link rel=\"stylesheet\" href=\"https:\/\/unpkg.com\/leaflet@1.9.4\/dist\/leaflet.css\">\n    <link rel=\"stylesheet\" href=\"https:\/\/informatoo.com\/wp-content\/plugins\/solidara-map\/solidara-map.css\">\n    <link rel=\"stylesheet\" href=\"https:\/\/informatoo.com\/wp-content\/plugins\/solidara-map\/fontawesome\/css\/all.min.css\">\n\n    <script>\n    document.addEventListener(\"DOMContentLoaded\", function () {\n        const mapEl = document.getElementById(\"solidara-map\");\n        if (!mapEl) return;\n\n        const geojsonData = {\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [34.05379957899652, 35.01480468633691]\n      },\n      \"properties\": {\n        \"name\": \"Protaras\",\n        \"popupContent\": \"Protaras\",\n        \"marker\": {\n        \"markerUrl\" : \"https:\/\/informatoo.com\/wp-content\/uploads\/2025\/03\/free-map-marker-icon-blue.png\",\n        \"faIcon\": \"fas fa-city\"      \n        }\n       }\n     },\n     {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [34.05872015770756, 35.012526970007166]\n      },\n      \"properties\": {\n        \"name\": \"Fig Tree Bay\",\n        \"popupContent\": \"Fig Tree Bay\",\n        \"marker\": {\n          \"markerUrl\" : \"https:\/\/informatoo.com\/wp-content\/uploads\/2025\/03\/free-map-marker-icon-blue.png\",\n          \"faIcon\": \"fas fa-umbrella-beach\",\n          \"faColor\": \"black\"\n        }\n      }\n    }\n  ]\n};\n        const lat = 35.015167184550656;\n        const lon = 34.058895476126125;\n        const zoom = 15;\n        const height = '';\n        if (height) {\n            document.getElementById(\"solidara-map\").style.height = height;\n        }\n        const map = L.map(\"solidara-map\");\n        L.tileLayer('https:\/\/{s}.tile.openstreetmap.org\/{z}\/{x}\/{y}.png', {\n            attribution: '&copy; Solidara Digital Services EOOD | v5.40'\n        }).addTo(map);\n\n        if (zoom > 0 && lat && lon) {\n            map.setView([lat, lon], zoom);\n        } else if (geojsonData) {\n            const geojsonLayer = L.geoJSON(geojsonData);\n            geojsonLayer.addTo(map);\n            map.fitBounds(geojsonLayer.getBounds());\n        }\n\n        function addTextLabel(latlng, text, color = 'black', background = 'white', size = '14px') {\n            const label = L.divIcon({\n                className: 'custom-text-label',\n                html: `<span style=\"text-align:center; background: ${background}; color:${color}; font-size:${size}; white-space:nowrap;\">${text}<\/span>`\n            });\n            L.marker(latlng, { icon: label }).addTo(map);\n        }\n\n        function addCombinedMarker(latlng, markerUrl, faClass, draggable = false) {\n            if (!markerUrl.startsWith(\"http\")) {\n                markerUrl = \"\/wp-content\/plugins\/solidara-map\/marker\/free-map-marker-icon-\" + markerUrl;\n            }\n\n            const icon = L.divIcon({\n                className: 'custom-div-icon',\n                html: `\n                    <div style=\"position: relative; width: 78px; height: 78px;\">\n                        <img decoding=\"async\" src=\"${markerUrl}\" style=\"width: 78px; height: 78px; z-index:200;\">\n                        <i class=\"${faClass}\" style=\"position: absolute; top: 15px; font-size: 24px; color: black; z-index:201;\"><\/i>\n                    <\/div>`,\n                iconSize: [78, 78],\n                iconAnchor: [39, 78]\n            });\n\n            const marker = L.marker(latlng, { icon: icon, draggable: draggable }).addTo(map);\n\n            function updatePopup() {\n                const pos = marker.getLatLng();\n                const text = marker.popupContent || 'Position anzeigen';\n                const popupHtml = `<a href=\"#\" onclick=\"saveCoords(${pos.lat}, ${pos.lng})\">${text}<\/a>`;\n                marker.bindPopup(popupHtml);\n            }\n\n            updatePopup();\n\n            marker.on('dragend', function () {\n                updatePopup();\n                marker.openPopup();\n            });\n\n            return marker;\n        }\n\n        function addMarker(latlng, markerUrl, draggable = false) {\n            if (!markerUrl.startsWith(\"http\")) markerUrl = \"\/wp-content\/plugins\/solidara-map\/marker\/free-map-marker-icon-\" + markerUrl;\n            const icon = L.icon({\n                iconUrl: markerUrl,\n                iconSize: [78, 78],\n                iconAnchor: [39, 78]\n            });\n            const marker = L.marker(latlng, { icon: icon, draggable: draggable }).addTo(map);\n            marker.on('dragend', function () {\n                const pos = marker.getLatLng();\n                console.log(pos.lat, pos.lng);\n            });\n            return marker;\n        }\n\n        function addEmoji(latlng, emoji, top, draggable = false) {\n            const emojiIcon = L.divIcon({\n                className: 'custom-div-icon',\n                html: `<div style=\"font-size:28px; line-height:1; text-align:center; width:100%; position:relative; top:${top};\">${emoji}<\/div>`,\n                iconSize: [78, 78],\n                iconAnchor: [39, 78]\n            });\n            return L.marker(latlng, { icon: emojiIcon, draggable: draggable }).addTo(map);\n        }\n\n        function addFaIcon(latlng, faClass, top, color = '#000', draggable = false) {\n            const icon = L.divIcon({\n                className: 'custom-div-icon',\n                html: `<i class=\"${faClass}\" style=\"font-size:24px; top:${top}; color:${color};\"><\/i>`,\n                iconSize: [78, 78],\n                iconAnchor: [39, 78]\n            });\n            return L.marker(latlng, { icon: icon, draggable: draggable }).addTo(map);\n        }\n\n        function addImage(latlng, url, top, draggable = false) {\n            if (!url.startsWith(\"http\")) url = \"https:\/\/informatoo.com\/images\/\" + url;\n            const imageIcon = L.divIcon({\n                className: 'custom-div-icon',\n                html: `<img decoding=\"async\" src=\"${url}\" style=\"width:40px; height:40px; position:relative; left:21px; top:${top}; border-radius:50%;\">`,\n                iconSize: [78, 78],\n                iconAnchor: [39, 78]\n            });\n            return L.marker(latlng, { icon: imageIcon, draggable: draggable }).addTo(map);\n        }\n\n        function addPolygon(latlngs, options = {}) {\n            const color = options.color || 'blue';\n            const fillColor = options.fillColor || 'lightblue';\n            const fillOpacity = options.fillOpacity !== undefined ? options.fillOpacity : 0.3;\n            const weight = options.weight || 2;\n            const polygon = L.polygon(latlngs, { color, fillColor, fillOpacity, weight });\n            polygon.addTo(map);\n        }\n\n        function addCircle(latlng, options = {}) {\n            const radius = options.radius || 100;\n            const color = options.color || 'red';\n            const fillColor = options.fillColor || color;\n            const fillOpacity = options.fillOpacity !== undefined ? options.fillOpacity : 0.3;\n            const weight = options.weight || 2;\n            const circle = L.circle(latlng, { radius, color, fillColor, fillOpacity, weight });\n            circle.addTo(map);\n        }\n\n        function addPopup(layer, content, top = \"-60\") {\n            if (content) {\n                layer.bindPopup(content, { offset: L.point(0, top) });\n            }\n        }\n\n        if (geojsonData && geojsonData.features) {\n            geojsonData.features.forEach(feature => {\n                const type = feature.geometry.type;\n                const coords = feature.geometry.coordinates;\n                const props = feature.properties || {};\n                const latlng = [coords[1], coords[0]];\n\n                if (type === \"Polygon\") {\n                    const latlngs = coords[0].map(coord => [coord[1], coord[0]]);\n                    addPolygon(latlngs, props.style || {});\n                    return;\n                }\n\n                if (type === \"Point\" && props.circle) {\n                    addCircle(latlng, props.circle);\n                    return;\n                }\n\n                let marker;\n                if (props.marker && props.marker.markerUrl) {\n                    if (props.marker.customCombinedIcon) {\n                        marker = addCombinedMarker(latlng, props.marker.markerUrl, props.marker.faIcon, props.marker.draggable);\n                        if (marker && props.marker.popupContent) {\n                            addPopup(marker, props.marker.popupContent);\n                        }\n                    } else {\n                        marker = addMarker(latlng, props.marker.markerUrl);\n                    }\n                    \n                    if (marker) addPopup(marker, props.marker.popupContent || props.popupContent);\n                    \n                    if (!props.marker.customCombinedIcon) {\n                        let extraMarker = null;\n                        if (props.marker.emoji) {\n                            extraMarker = addEmoji(latlng, props.marker.emoji, \"12px\");\n                        } else if (props.marker.faIcon) {\n                            extraMarker = addFaIcon(latlng, props.marker.faIcon, \"14px\", props.marker.faColor);\n                        } else if (props.marker.image) {\n                            extraMarker = addImage(latlng, props.marker.image, \"8px\");\n                        }\n                        if (extraMarker) addPopup(extraMarker, props.marker.popupContent || props.popupContent);\n                    }  \n                }\n\n                if (props.textLabel) {\n                    const color = props.textColor || 'black';\n                    const size = props.textSize || '16px';\n                    const background = props.background || '';\n                    addTextLabel(latlng, props.textLabel, color, background, size, \"center\");\n                }\n\n                if (props.marker && props.marker.textLabel) {\n                    const color = props.marker.textColor || 'black';\n                    const size = props.marker.textSize || '14px';\n                    const background = props.marker.background || 'white';\n                    addTextLabel(latlng, props.marker.textLabel, color, background, size, \"center\");\n                }\n\n                if (!props.marker) {\n                    let extraMarker = null;\n                    if (props.emoji) extraMarker = addEmoji(latlng, props.emoji, \"40px\");\n                    if (props.faIcon) extraMarker = addFaIcon(latlng, props.faIcon, \"40px\", props.faColor);\n                    if (props.image) extraMarker = addImage(latlng, props.image, \"38px\");\n                    if (extraMarker) addPopup(extraMarker, props.popupContent, \"-40\");\n                }\n            });\n        }\n    });\n    <\/script>\n    \n\n\n<h3 class=\"wp-block-heading\"><strong>Fig Tree Bay \u2013 Famili\u00aden\u00adfreund\u00adlicher Strand mit Charme<\/strong><\/h3>\n\n\n\n<p>Im Ort Protaras liegt die <strong>Fig Tree Bay<\/strong>, die ihren Namen einem alten Feigenbaum verdankt. Dieser Strand ist bekannt f\u00fcr seinen goldenen Sand, die ausge\u00adzeichnete Wasser\u00adqua\u00adlit\u00e4t und die kleine, vorge\u00adla\u00adgerte Insel, zu der man bequem schwimmen kann. Besonders bei Familien ist dieser Strand beliebt \u2013 dank ruhigem Wasser, Sonnen\u00adliegen und Restau\u00adrants in Strandn\u00e4he.<\/p>\n\n\n    <div id=\"solidara-map\" style=\"width: 95%; height: 500px\"><\/div>\n    <script src=\"https:\/\/unpkg.com\/leaflet@1.9.4\/dist\/leaflet.js\"><\/script>\n    <link rel=\"stylesheet\" href=\"https:\/\/unpkg.com\/leaflet@1.9.4\/dist\/leaflet.css\">\n    <link rel=\"stylesheet\" href=\"https:\/\/informatoo.com\/wp-content\/plugins\/solidara-map\/solidara-map.css\">\n    <link rel=\"stylesheet\" href=\"https:\/\/informatoo.com\/wp-content\/plugins\/solidara-map\/fontawesome\/css\/all.min.css\">\n\n    <script>\n    document.addEventListener(\"DOMContentLoaded\", function () {\n        const mapEl = document.getElementById(\"solidara-map\");\n        if (!mapEl) return;\n\n        const geojsonData = {\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [32.369338695208015, 34.854172960624126]\n      },\n      \"properties\": {\n        \"name\": \"Coral Bay\",\n        \"popupContent\": \"Coral Bay\",\n        \"marker\": {\n          \"markerUrl\" : \"https:\/\/informatoo.com\/wp-content\/uploads\/2025\/03\/free-map-marker-icon-blue.png\",\n          \"faIcon\": \"fas fa-umbrella-beach\",\n          \"faColor\": \"black\" \n        }\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [32.41996352157979, 34.77591844335824]\n      },\n      \"properties\": {\n        \"name\": \"Paphos\",\n        \"popupContent\": \"Paphos\",\n        \"marker\": {\n          \"markerUrl\" : \"https:\/\/informatoo.com\/wp-content\/uploads\/2025\/03\/free-map-marker-icon-blue.png\",\n          \"faIcon\": \"fas fa-city\" \n         }\n       }\n     }\n  ]\n};\n        const lat = 34.77548586464782;\n        const lon = 32.42168039143204;\n        const zoom = 0;\n        const height = '';\n        if (height) {\n            document.getElementById(\"solidara-map\").style.height = height;\n        }\n        const map = L.map(\"solidara-map\");\n        L.tileLayer('https:\/\/{s}.tile.openstreetmap.org\/{z}\/{x}\/{y}.png', {\n            attribution: '&copy; Solidara Digital Services EOOD | v5.40'\n        }).addTo(map);\n\n        if (zoom > 0 && lat && lon) {\n            map.setView([lat, lon], zoom);\n        } else if (geojsonData) {\n            const geojsonLayer = L.geoJSON(geojsonData);\n            geojsonLayer.addTo(map);\n            map.fitBounds(geojsonLayer.getBounds());\n        }\n\n        function addTextLabel(latlng, text, color = 'black', background = 'white', size = '14px') {\n            const label = L.divIcon({\n                className: 'custom-text-label',\n                html: `<span style=\"text-align:center; background: ${background}; color:${color}; font-size:${size}; white-space:nowrap;\">${text}<\/span>`\n            });\n            L.marker(latlng, { icon: label }).addTo(map);\n        }\n\n        function addCombinedMarker(latlng, markerUrl, faClass, draggable = false) {\n            if (!markerUrl.startsWith(\"http\")) {\n                markerUrl = \"\/wp-content\/plugins\/solidara-map\/marker\/free-map-marker-icon-\" + markerUrl;\n            }\n\n            const icon = L.divIcon({\n                className: 'custom-div-icon',\n                html: `\n                    <div style=\"position: relative; width: 78px; height: 78px;\">\n                        <img decoding=\"async\" src=\"${markerUrl}\" style=\"width: 78px; height: 78px; z-index:200;\">\n                        <i class=\"${faClass}\" style=\"position: absolute; top: 15px; font-size: 24px; color: black; z-index:201;\"><\/i>\n                    <\/div>`,\n                iconSize: [78, 78],\n                iconAnchor: [39, 78]\n            });\n\n            const marker = L.marker(latlng, { icon: icon, draggable: draggable }).addTo(map);\n\n            function updatePopup() {\n                const pos = marker.getLatLng();\n                const text = marker.popupContent || 'Position anzeigen';\n                const popupHtml = `<a href=\"#\" onclick=\"saveCoords(${pos.lat}, ${pos.lng})\">${text}<\/a>`;\n                marker.bindPopup(popupHtml);\n            }\n\n            updatePopup();\n\n            marker.on('dragend', function () {\n                updatePopup();\n                marker.openPopup();\n            });\n\n            return marker;\n        }\n\n        function addMarker(latlng, markerUrl, draggable = false) {\n            if (!markerUrl.startsWith(\"http\")) markerUrl = \"\/wp-content\/plugins\/solidara-map\/marker\/free-map-marker-icon-\" + markerUrl;\n            const icon = L.icon({\n                iconUrl: markerUrl,\n                iconSize: [78, 78],\n                iconAnchor: [39, 78]\n            });\n            const marker = L.marker(latlng, { icon: icon, draggable: draggable }).addTo(map);\n            marker.on('dragend', function () {\n                const pos = marker.getLatLng();\n                console.log(pos.lat, pos.lng);\n            });\n            return marker;\n        }\n\n        function addEmoji(latlng, emoji, top, draggable = false) {\n            const emojiIcon = L.divIcon({\n                className: 'custom-div-icon',\n                html: `<div style=\"font-size:28px; line-height:1; text-align:center; width:100%; position:relative; top:${top};\">${emoji}<\/div>`,\n                iconSize: [78, 78],\n                iconAnchor: [39, 78]\n            });\n            return L.marker(latlng, { icon: emojiIcon, draggable: draggable }).addTo(map);\n        }\n\n        function addFaIcon(latlng, faClass, top, color = '#000', draggable = false) {\n            const icon = L.divIcon({\n                className: 'custom-div-icon',\n                html: `<i class=\"${faClass}\" style=\"font-size:24px; top:${top}; color:${color};\"><\/i>`,\n                iconSize: [78, 78],\n                iconAnchor: [39, 78]\n            });\n            return L.marker(latlng, { icon: icon, draggable: draggable }).addTo(map);\n        }\n\n        function addImage(latlng, url, top, draggable = false) {\n            if (!url.startsWith(\"http\")) url = \"https:\/\/informatoo.com\/images\/\" + url;\n            const imageIcon = L.divIcon({\n                className: 'custom-div-icon',\n                html: `<img decoding=\"async\" src=\"${url}\" style=\"width:40px; height:40px; position:relative; left:21px; top:${top}; border-radius:50%;\">`,\n                iconSize: [78, 78],\n                iconAnchor: [39, 78]\n            });\n            return L.marker(latlng, { icon: imageIcon, draggable: draggable }).addTo(map);\n        }\n\n        function addPolygon(latlngs, options = {}) {\n            const color = options.color || 'blue';\n            const fillColor = options.fillColor || 'lightblue';\n            const fillOpacity = options.fillOpacity !== undefined ? options.fillOpacity : 0.3;\n            const weight = options.weight || 2;\n            const polygon = L.polygon(latlngs, { color, fillColor, fillOpacity, weight });\n            polygon.addTo(map);\n        }\n\n        function addCircle(latlng, options = {}) {\n            const radius = options.radius || 100;\n            const color = options.color || 'red';\n            const fillColor = options.fillColor || color;\n            const fillOpacity = options.fillOpacity !== undefined ? options.fillOpacity : 0.3;\n            const weight = options.weight || 2;\n            const circle = L.circle(latlng, { radius, color, fillColor, fillOpacity, weight });\n            circle.addTo(map);\n        }\n\n        function addPopup(layer, content, top = \"-60\") {\n            if (content) {\n                layer.bindPopup(content, { offset: L.point(0, top) });\n            }\n        }\n\n        if (geojsonData && geojsonData.features) {\n            geojsonData.features.forEach(feature => {\n                const type = feature.geometry.type;\n                const coords = feature.geometry.coordinates;\n                const props = feature.properties || {};\n                const latlng = [coords[1], coords[0]];\n\n                if (type === \"Polygon\") {\n                    const latlngs = coords[0].map(coord => [coord[1], coord[0]]);\n                    addPolygon(latlngs, props.style || {});\n                    return;\n                }\n\n                if (type === \"Point\" && props.circle) {\n                    addCircle(latlng, props.circle);\n                    return;\n                }\n\n                let marker;\n                if (props.marker && props.marker.markerUrl) {\n                    if (props.marker.customCombinedIcon) {\n                        marker = addCombinedMarker(latlng, props.marker.markerUrl, props.marker.faIcon, props.marker.draggable);\n                        if (marker && props.marker.popupContent) {\n                            addPopup(marker, props.marker.popupContent);\n                        }\n                    } else {\n                        marker = addMarker(latlng, props.marker.markerUrl);\n                    }\n                    \n                    if (marker) addPopup(marker, props.marker.popupContent || props.popupContent);\n                    \n                    if (!props.marker.customCombinedIcon) {\n                        let extraMarker = null;\n                        if (props.marker.emoji) {\n                            extraMarker = addEmoji(latlng, props.marker.emoji, \"12px\");\n                        } else if (props.marker.faIcon) {\n                            extraMarker = addFaIcon(latlng, props.marker.faIcon, \"14px\", props.marker.faColor);\n                        } else if (props.marker.image) {\n                            extraMarker = addImage(latlng, props.marker.image, \"8px\");\n                        }\n                        if (extraMarker) addPopup(extraMarker, props.marker.popupContent || props.popupContent);\n                    }  \n                }\n\n                if (props.textLabel) {\n                    const color = props.textColor || 'black';\n                    const size = props.textSize || '16px';\n                    const background = props.background || '';\n                    addTextLabel(latlng, props.textLabel, color, background, size, \"center\");\n                }\n\n                if (props.marker && props.marker.textLabel) {\n                    const color = props.marker.textColor || 'black';\n                    const size = props.marker.textSize || '14px';\n                    const background = props.marker.background || 'white';\n                    addTextLabel(latlng, props.marker.textLabel, color, background, size, \"center\");\n                }\n\n                if (!props.marker) {\n                    let extraMarker = null;\n                    if (props.emoji) extraMarker = addEmoji(latlng, props.emoji, \"40px\");\n                    if (props.faIcon) extraMarker = addFaIcon(latlng, props.faIcon, \"40px\", props.faColor);\n                    if (props.image) extraMarker = addImage(latlng, props.image, \"38px\");\n                    if (extraMarker) addPopup(extraMarker, props.popupContent, \"-40\");\n                }\n            });\n        }\n    });\n    <\/script>\n    \n\n\n<h3 class=\"wp-block-heading\"><strong>Coral Bay \u2013 Postkar\u00adten\u00adidylle bei Paphos<\/strong><\/h3>\n\n\n\n<p>Im Westen Zyperns, nahe der Stadt Paphos, befindet sich die malerische <strong>Coral Bay<\/strong>. Einge\u00adbettet in eine gesch\u00fctzte Bucht bietet der Strand feinen, goldgelben Sand und ruhiges Wasser \u2013 ideal zum Schwimmen, Schnor\u00adcheln und Sonnen\u00adbaden. In der N\u00e4he befinden sich Tavernen und Hotels, die den Aufenthalt angenehm abrunden.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\">\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Reisezeit &amp; Tipps<\/strong><\/h3>\n\n\n\n<p>Die beste Zeit f\u00fcr einen Strand\u00adurlaub auf Zypern ist zwischen <strong>Mai und Oktober<\/strong>, wobei die Monate Mai, Juni und September besonders angenehm sind \u2013 warm, aber nicht \u00fcberlaufen. Viele Str\u00e4nde sind mit der <strong>Blauen Flagge<\/strong> ausge\u00adzeichnet, was f\u00fcr hohe Umwelt- und Sicher\u00adheits\u00adstan\u00addards spricht.<\/p>\n\n\n\n<p>Wer mag, kann Strandtage mit Ausfl\u00fcgen ins gebirgige Hinterland oder zu kultu\u00adrellen Highlights wie der <strong>Aphrodite-Felsen<\/strong>, den <strong>K\u00f6nigs\u00adgr\u00e4bern von Paphos<\/strong> oder der geteilten Haupt\u00adstadt <strong>Nikosia<\/strong> kombi\u00adnieren.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\">\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Fazit<\/strong><\/h3>\n\n\n\n<p>Zyperns Sandstr\u00e4nde z\u00e4hlen zu den sch\u00f6nsten im Mittel\u00admeerraum. Egal ob du auf der Suche nach Party, Entspannung, Natur oder einem Famili\u00aden\u00adaben\u00adteuer bist \u2013 auf dieser sonnen\u00adver\u00adw\u00f6hnten Insel wirst du deinen Traum\u00adstrand finden.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\">\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Paradie\u00adsische Sandstr\u00e4nde auf Zypern \u2013 Sonne, Meer und mediter\u00adraner Zauber Zypern, die dritt\u00adgr\u00f6\u00dfte Insel im Mittelmeer, ist nicht nur f\u00fcr ihre reiche Geschichte und herzliche Gastfreund\u00adschaft bekannt, sondern auch f\u00fcr ihre traum\u00adhaften Sandstr\u00e4nde. Ob du die Ruhe suchst, das kristall\u00adklare Wasser genie\u00dfen oder dich sportlich austoben m\u00f6chtest \u2013 Zyperns K\u00fcsten haben f\u00fcr jeden etwas zu [\u2026]<\/p>\n","protected":false},"author":1,"featured_media":3512,"menu_order":0,"template":"","format":"standard","meta":{"wp_typography_post_enhancements_disabled":false,"footnotes":""},"region":[206],"tag_de":[],"thema":[110],"ai_version":[],"class_list":["post-3510","info","type-info","status-publish","format-standard","has-post-thumbnail","hentry","region-republik-zypern","thema-reisen"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Zyperns Sandstr\u00e4nde - informatoo.com<\/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:\/\/informatoo.com\/en\/info\/zyperns-sandstraende\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:locale:alternate\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Zyperns Sandstr\u00e4nde - informatoo.com\" \/>\n<meta property=\"og:description\" content=\"Paradie\u00adsische Sandstr\u00e4nde auf Zypern \u2013 Sonne, Meer und mediter\u00adraner Zauber Zypern, die dritt\u00adgr\u00f6\u00dfte Insel im Mittelmeer, ist nicht nur f\u00fcr ihre reiche Geschichte und herzliche Gastfreund\u00adschaft bekannt, sondern auch f\u00fcr ihre traum\u00adhaften Sandstr\u00e4nde. Ob du die Ruhe suchst, das kristall\u00adklare Wasser genie\u00dfen oder dich sportlich austoben m\u00f6chtest \u2013 Zyperns K\u00fcsten haben f\u00fcr jeden etwas zu [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/informatoo.com\/en\/info\/zyperns-sandstraende\/\" \/>\n<meta property=\"og:site_name\" content=\"informatoo.com\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-08T09:18:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/informatoo.com\/wp-content\/uploads\/2025\/04\/52174771551_d815b11348_o-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1920\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/informatoo.com\\\/info\\\/zyperns-sandstraende\\\/\",\"url\":\"https:\\\/\\\/informatoo.com\\\/info\\\/zyperns-sandstraende\\\/\",\"name\":\"Zyperns Sandstr\u00e4nde - informatoo.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/informatoo.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/informatoo.com\\\/info\\\/zyperns-sandstraende\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/informatoo.com\\\/info\\\/zyperns-sandstraende\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/informatoo.com\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/52174771551_d815b11348_o-scaled.jpg\",\"datePublished\":\"2025-04-08T07:42:59+00:00\",\"dateModified\":\"2025-04-08T09:18:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/informatoo.com\\\/info\\\/zyperns-sandstraende\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/informatoo.com\\\/info\\\/zyperns-sandstraende\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/informatoo.com\\\/info\\\/zyperns-sandstraende\\\/#primaryimage\",\"url\":\"https:\\\/\\\/informatoo.com\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/52174771551_d815b11348_o-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/informatoo.com\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/52174771551_d815b11348_o-scaled.jpg\",\"width\":2560,\"height\":1920,\"caption\":\"Nissi Beach, Zypern\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/informatoo.com\\\/info\\\/zyperns-sandstraende\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/informatoo.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Beitr\u00e4ge (de-de)\",\"item\":\"https:\\\/\\\/informatoo.com\\\/info\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Zyperns Sandstr\u00e4nde\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/informatoo.com\\\/#website\",\"url\":\"https:\\\/\\\/informatoo.com\\\/\",\"name\":\"informatoo.com\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/informatoo.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/informatoo.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/informatoo.com\\\/#organization\",\"name\":\"informatoo.com\",\"url\":\"https:\\\/\\\/informatoo.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/informatoo.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/informatoo.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/informatoo.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/logo.png\",\"width\":32,\"height\":59,\"caption\":\"informatoo.com\"},\"image\":{\"@id\":\"https:\\\/\\\/informatoo.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Zyperns Sandstr\u00e4nde - informatoo.com","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:\/\/informatoo.com\/en\/info\/zyperns-sandstraende\/","og_locale":"en_US","og_type":"article","og_title":"Zyperns Sandstr\u00e4nde - informatoo.com","og_description":"Paradie\u00adsische Sandstr\u00e4nde auf Zypern \u2013 Sonne, Meer und mediter\u00adraner Zauber Zypern, die dritt\u00adgr\u00f6\u00dfte Insel im Mittelmeer, ist nicht nur f\u00fcr ihre reiche Geschichte und herzliche Gastfreund\u00adschaft bekannt, sondern auch f\u00fcr ihre traum\u00adhaften Sandstr\u00e4nde. Ob du die Ruhe suchst, das kristall\u00adklare Wasser genie\u00dfen oder dich sportlich austoben m\u00f6chtest \u2013 Zyperns K\u00fcsten haben f\u00fcr jeden etwas zu [&hellip;]","og_url":"https:\/\/informatoo.com\/en\/info\/zyperns-sandstraende\/","og_site_name":"informatoo.com","article_modified_time":"2025-04-08T09:18:59+00:00","og_image":[{"width":2560,"height":1920,"url":"https:\/\/informatoo.com\/wp-content\/uploads\/2025\/04\/52174771551_d815b11348_o-scaled.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/informatoo.com\/info\/zyperns-sandstraende\/","url":"https:\/\/informatoo.com\/info\/zyperns-sandstraende\/","name":"Zyperns Sandstr\u00e4nde - informatoo.com","isPartOf":{"@id":"https:\/\/informatoo.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/informatoo.com\/info\/zyperns-sandstraende\/#primaryimage"},"image":{"@id":"https:\/\/informatoo.com\/info\/zyperns-sandstraende\/#primaryimage"},"thumbnailUrl":"https:\/\/informatoo.com\/wp-content\/uploads\/2025\/04\/52174771551_d815b11348_o-scaled.jpg","datePublished":"2025-04-08T07:42:59+00:00","dateModified":"2025-04-08T09:18:59+00:00","breadcrumb":{"@id":"https:\/\/informatoo.com\/info\/zyperns-sandstraende\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/informatoo.com\/info\/zyperns-sandstraende\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/informatoo.com\/info\/zyperns-sandstraende\/#primaryimage","url":"https:\/\/informatoo.com\/wp-content\/uploads\/2025\/04\/52174771551_d815b11348_o-scaled.jpg","contentUrl":"https:\/\/informatoo.com\/wp-content\/uploads\/2025\/04\/52174771551_d815b11348_o-scaled.jpg","width":2560,"height":1920,"caption":"Nissi Beach, Zypern"},{"@type":"BreadcrumbList","@id":"https:\/\/informatoo.com\/info\/zyperns-sandstraende\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/informatoo.com\/"},{"@type":"ListItem","position":2,"name":"Beitr\u00e4ge (de-de)","item":"https:\/\/informatoo.com\/info\/"},{"@type":"ListItem","position":3,"name":"Zyperns Sandstr\u00e4nde"}]},{"@type":"WebSite","@id":"https:\/\/informatoo.com\/#website","url":"https:\/\/informatoo.com\/","name":"informatoo.com","description":"","publisher":{"@id":"https:\/\/informatoo.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/informatoo.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/informatoo.com\/#organization","name":"informatoo.com","url":"https:\/\/informatoo.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/informatoo.com\/#\/schema\/logo\/image\/","url":"https:\/\/informatoo.com\/wp-content\/uploads\/2024\/10\/logo.png","contentUrl":"https:\/\/informatoo.com\/wp-content\/uploads\/2024\/10\/logo.png","width":32,"height":59,"caption":"informatoo.com"},"image":{"@id":"https:\/\/informatoo.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/informatoo.com\/en\/wp-json\/wp\/v2\/info\/3510","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/informatoo.com\/en\/wp-json\/wp\/v2\/info"}],"about":[{"href":"https:\/\/informatoo.com\/en\/wp-json\/wp\/v2\/types\/info"}],"author":[{"embeddable":true,"href":"https:\/\/informatoo.com\/en\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":9,"href":"https:\/\/informatoo.com\/en\/wp-json\/wp\/v2\/info\/3510\/revisions"}],"predecessor-version":[{"id":3531,"href":"https:\/\/informatoo.com\/en\/wp-json\/wp\/v2\/info\/3510\/revisions\/3531"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/informatoo.com\/en\/wp-json\/wp\/v2\/media\/3512"}],"wp:attachment":[{"href":"https:\/\/informatoo.com\/en\/wp-json\/wp\/v2\/media?parent=3510"}],"wp:term":[{"taxonomy":"region","embeddable":true,"href":"https:\/\/informatoo.com\/en\/wp-json\/wp\/v2\/region?post=3510"},{"taxonomy":"tag_de","embeddable":true,"href":"https:\/\/informatoo.com\/en\/wp-json\/wp\/v2\/tag_de?post=3510"},{"taxonomy":"thema","embeddable":true,"href":"https:\/\/informatoo.com\/en\/wp-json\/wp\/v2\/thema?post=3510"},{"taxonomy":"ai_version","embeddable":true,"href":"https:\/\/informatoo.com\/en\/wp-json\/wp\/v2\/ai_version?post=3510"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}