Chitharal Jain Caves
Chitharal Jain Caves
🕒 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 | ||
| Nagercoil Anna Bus Terminal | ||
| Kanniyakumari Bus Terminal | ||
| Marthandam Bus Terminal | 86A | Gnaranvilai Thickurichy |
| Kalliyakkavilai Bus Terminal |
📖 Description:
Chitharal Jain monuments are located in a small Village situated 7 kms. from Marthandam and 55 kms. from Kanniyakumari earlier known as Thirucharanthupalli was the abode of Jain monks belonging to digambara sect. There Is a hellock, which has a cave, rock-cut sculptures of Thirthankaras carved inside and outside which dates back to 9th century.
📷 Image Gallery
×
const images = ["https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051734-scaled.jpg", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051734-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=` + encodeURIComponent("Chitharal Rock Jain Temple ( Malaikovil), 86JQ+W9V, Vellamcode, Tamil Nadu 629151");
window.location.href = url;
}, function() {
alert("Could not get location");
});
}
}