Kodayar Twin Falls
Kodayar Twin Falls
📖 Description: Kodayar Twin Falls — nestled in the lush Western Ghats within the Veerapuli Reserve Forest near Kanyakumari — is a serene and scenic twin-stream waterfall, plunging from around 200 ft amidst dense greenery
🕒 Timings:
📞 Emergency Contacts
- Police: 100
- Fire: 101
- Ambulance: 108
- District Control Center: 1077
- Local Administration: Pechiparai village Panchayat (04651-290404)
- Tourism Dept: 9176995866
📍 Get Directions:
🚌 Bus Details
| Bus Terminal | Route No. | Via |
|---|---|---|
| Nagercoil Vadassery Bus Terminal | ||
| Nagercoil Anna Bus Terminal | ||
| Kanniyakumari Bus Terminal | ||
| Marthandam Bus Terminal | ||
| Kalliyakkavilai Bus Terminal |
📷 Image Gallery
×
const images = ["https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/06/2025061133.png", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/06/2025061133.png"];
let currentIndex = 0;
function openModal(i) {
currentIndex = i;
document.getElementById('modalImage').src = images[i];
document.getElementById('imageModal').style.display = 'flex';
}
function closeModal() {
document.getElementById('imageModal').style.display = 'none';
}
function nextImage() {
currentIndex = (currentIndex + 1) % images.length;
document.getElementById('modalImage').src = images[currentIndex];
}
function prevImage() {
currentIndex = (currentIndex - 1 + images.length) % images.length;
document.getElementById('modalImage').src = images[currentIndex];
}
function getLocationAndRedirect() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
const lat = position.coords.latitude;
const lon = position.coords.longitude;
const url = "https://www.google.com/maps/dir/?api=1&origin=" + lat + "," + lon + "&destination=encodeURIComponentKodayar Twin Falls, F8RHQ2H, Veerapuli R.F., Tamil Nadu 629101";
window.location.href = url;
}, function() {
alert('Could not get location');
});
}
}
window.onload = function() {
document.getElementById('mapBtn').addEventListener('click', getLocationAndRedirect);
document.getElementById('img0').addEventListener('click', function() { openModal(0); });
document.getElementById('img1').addEventListener('click', function() { openModal(1); });
}