Thirparappu Waterfalls
Thirparappu Waterfalls
📖 Description: Thirparappu falls is located 42 kms. from Nagercoil and 55 kms.from Thiruvananthapuram. This Famous falls in Kodiyar which makes its defend at Thirparappu and it is about 13 kms. from Pechiparai dam. It is 300 ft. long and consists Rocky river bad
🕒 Timings: 6:00 a.m. to 6:00 p.m.
📞 Emergency Contacts
- Police: 100
- Fire: 101
- Ambulance: 108
- District Control Center: 1077
- Local Administration: Thirpparappu Town Panchayat (04651-277156)
- Tourism Dept: 9176995866
📍 Get Directions:
🚌 Bus Details
| Bus Terminal | Route No. | Via |
|---|---|---|
| Nagercoil Vadassery Bus Terminal | 313A,341,350 | Thuckalay, Thiruvattar |
| Nagercoil Anna Bus Terminal | ||
| Kanniyakumari Bus Terminal | 350 | Nagercoil , Thuckalay, Kulasek haram |
| Marthandam Bus Terminal | 89A, PHS-32, 458 | Attoor, Thiruvattar |
| Kalliyakkavilai Bus Terminal | 458 | Marthandam, Attoor, Thiruvattar |
📷 Image Gallery
×
const images = ["https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051664-scaled.jpg", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051664-scaled.jpg"];
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=encodeURIComponentThiruparappu Waterfalls, 97W65WV, Water Falls, Tiruparapu, Tamil Nadu 629151";
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); });
}