Paros
Πάρος
Paros is an island in the Aegean Sea known for its beautiful beaches known for its unique rock formations, crystal clear waters, and stunning views of the surrounding hills. The beach is divided into small coves, making it perfect for swimming and sunbathing in a more secluded setting.
document.addEventListener('DOMContentLoaded', function() {
var map = L.map('map').setView([38.178, 23.939], 6);
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© OpenStreetMap for Online Watersports'
}).addTo(map);
// Add geolocation control
L.control.locate().addTo(map);
var customIcon = L.icon({
iconUrl: '/wp-content/uploads/2023/04/style-three-pin-boat-skating.png',
iconSize: [27, 27]
});
var marker = L.marker([37.07178469, 25.12744235], {icon: customIcon});
marker.bindPopup('
').openPopup();
marker.postId = 120; // add the post ID as a custom property to the marker
map.addLayer(marker);
});