Louros Kalamaki
Λουρος Καλαμάκι
A beautiful sandy beach situated in the southwestern part of Zakynthos island. The beach is ideal for families with children, as the waters are shallow and calm. The surrounding area is quiet and peaceful, with several tavernas and restaurants serving fresh seafood.
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.73435002, 20.89272776], {icon: customIcon});
marker.bindPopup('
').openPopup();
marker.postId = 335; // add the post ID as a custom property to the marker
map.addLayer(marker);
});