Adikesavaperumal Temple
Adikesavaperumal Temple
🕒 Timings:
📍 Get Directions: Click the button below to allow location access and open Google Maps to this spot.
🚌 Bus Details
| Bus Terminal | Route No. | Via |
| Nagercoil Vadassery Bus Terminal | 313, 313B, 313A, 313C, 450 | Thuuckalay, Thiruvattar |
| Nagercoil Anna Bus Terminal | ||
| Kanniyakumari Bus Terminal | ||
| Marthandam Bus Terminal | 89, 89A, 89B, 89D, 89G | Unnamalaikadai, Attoor |
| Kalliyakkavilai Bus Terminal | 457, 458 | Marthandam, Attoor |
📖 Description:
Thiruvattar located about 60 kms. away from Kanniyakumar and boasts of a temple with fine architecture. The temple also features paintings, is worth to visit. It is one of the abode of Lord Vishnu in 108 Divyadesams.
📷 Image Gallery
×
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");
});
}
}