📖 விளக்கம்: காளிகேசம் கன்னியாகுமரியிலிருந்து 35 கிலோமீட்டர் தொலைவில் அமைந்துள்ளது.
காளிகேசம் தனித்தன்மை வாய்ந்தது, இது நிலப்பரப்பு மற்றும் நீர்வாழ் சுற்றுச்சூழலின்
கலவையாகும் - மரங்கள் பசுமையாக இருக்கும் முக்கிய காடுகள் மற்றும் சதுப்பு நிலங்கள்.
காட்டின் அமைதியும் சிதோசன நிலையும் வியக்க வைக்கிறது. நீரூற்றுகளின் குமிழி ஒலி
காதுகளுக்கு இசையாக இருக்கும்போது விசும் தென்றல் அருமருந்தாக செயல்படுகிறது.
இந்த இடம் ஏராளமான மழைப்பொழிவைப் பெறுகிறது மற்றும் ஆண்டு முழுவதும் இதமான
வானிலை நிலவுகிறது
🕒 நேரம்:
📞 அவசர தொடர்பு எண்கள்
காவல்: 100
தீயணைப்பு: 101
ஆம்புலன்ஸ்: 108
மாவட்ட கட்டுப்பாட்டு மையம்: 1077
உள்ளாட்சி நிர்வாகம்: தடிக்காரன்கோணம் கிராம ஊராட்சி (9994441177)
சுற்றுலா துறை: 9176995866
📍 வழியைப் பெறுங்கள்:
🚌 பேருந்து விவரங்கள்
Bus Terminal
Route No.
Via
நாகர்கோவில் வடசேரி பேருந்து நிலையம்
4
வடசேரி, தடிகாரன்கோணம்
நாகர்கோவில் அண்ணா பேருந்து நிலையம்
4
வடசேரி, தடிகாரன்கோணம்
கன்னியாகுமரி பேருந்து நிலையம்
மார்த்தாண்டம் பேருந்து நிலையம்
களியக்காவிளை பேருந்து நிலையம்
📷 பட தொகுப்பு
×
const images = ["https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051782-1-scaled.jpg", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051782-1-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=encodeURIComponentKaalikesam Waterfalls, Veerapuli R.F., Tamil Nadu 627133";
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); });
}