Kumari Amman Temple
Kumari Amman Temple
📖 Description: Kanniyakumari derives its name from the goddess Kanniyakumari Amman. This presiding deity of the area Arulmigu Bhagavathiamman Temple is located at the confluence of three seas of the Indian south corner the temple was constructed before three thousand years by Parasuram and then renovated by one of the kings of Pandiya dynasty. It is believed that goddess Bhagawati stood here as a spinster and she killed the demon Banasuran on Vijaya dashami, the last day of Navratri Festival. The temple is dedicated to goddess parvati as a virgin. She stands on an eternal visual protecting the shore of the country.
🕒 Timings: 4:30 a.m. to 12:30 p.m & 4:00 p.m. to 08:30 p.m
📞 Emergency Contacts
- Police: 100
- Fire: 101
- Ambulance: 108
- District Control Center: 1077
- Local Administration: Kanniyakumari Municipality (04652-246279)
- Tourism Dept: 9176995866
📍 Get Directions:
🚌 Bus Details
| Bus Terminal | Route No. | Via |
|---|---|---|
| Nagercoil Vadassery Bus Terminal | 1,2,303 | Anna bus Stand,Kottar,Suchindram,Kottarm |
| Nagercoil Anna Bus Terminal | 1,2,303 | Suchindram, Kottaram |
| Kanniyakumari Bus Terminal | ||
| Marthandam Bus Terminal | 303 | Thuckalay, Nagercoil |
| Kalliyakkavilai Bus Terminal | 303 | Thuckalay, Nagercoil |
📷 Image Gallery
×
const images = ["https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051798-scaled.jpg", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051798-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=encodeURIComponentArulmigu Devi Kanniyakumari Baghavathi Amman Temple, 3HH2P9H, Temple Rd, Kanniyakumari, Tamil Nadu 629702";
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); });
}