ஆதிகேசவ பெருமாள் திருக்கோயில்
ஆதிகேசவ பெருமாள் திருக்கோயில், திருவட்டார்
🕒 நேரம்:
📍 செல்லும் பாதை: பாதைக்கு Google Maps பெற இங்கே சொடுக்கவும்.
🚌 பேருந்து விவரங்கள்
| பேருந்து நிலையம் | பேருந்து எண். | வழி |
| நாகர்கோவில் வடசேரி பேருந்து நிலையம் | 313, 313B, 313A, 313C, 450 | தக்கலை, திருவட்டார் |
| நாகர்கோவில் அண்ணா பேருந்து நிலையம் | ||
| கன்னியாகுமரி பேருந்து நிலையம் | ||
| மார்த்தாண்டம் பேருந்து நிலையம் | 89, 89A, 89B, 89D, 89G | உண்ணாமலைக்கடை, ஆத்தூர் |
| களியக்காவிளை பேருந்து நிலையம் | 457, 458 | மார்த்தாண்டம், ஆத்தூர் |
📖 விளக்கம்:
திருவட்டார் கன்னியாகுமரியில் இருந்து 60 கிலோமீட்டர் தொலைவில் அமைந்துள்ளது சிறந்த கட்டிடக்கலை கொண்ட கோவிலாக திகழ்கிறது. கோவில் சுவர்களில் ஓவியங்களும் உள்ளன. இங்கு உள்நாடு மற்றும் வெளிநாட்டு சுற்றுலாப் பயணிகள் ஏராளமானோர் வந்து செல்கின்றனர்.
📷 படக் காட்சியகம்
×
const images = ["https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051787.png", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051787.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=Sree Adi Kesava Perumal TempleTemple Road Kalkulam, Taluk, Kulasekharam, Thiruvattaru, Tamil Nadu 629171`; window.location.href = url;
}, function() {
alert("Could not get location");
});
}
}