📍 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
311,451,
313
sector
Parvathipuram, Villukkuri
Nagercoil Anna Bus Terminal
11A
Collectorate,
Villukuri
Kanniyakumari Bus Terminal
303, 349, 350
Nagercoil , Villukuri
Marthandam Bus Terminal
303,
311,
382,
451
Swamiyar-madam, Thuckalay
Kalliyakkavilai Bus Terminal
303,
382
451
Marthandam, Thuckalay
📖 Description:
Kumarakovil it is at the foothills of the vellimalai hills. The abode of the Lord Muruga is built on 200 ft. hillock surrounded by paddy fields, plantain and coconut groves. This temple is an example of architectural beauty. Lord Muruga is with Goddess Valli in this temple.
📷 Image Gallery
×
const images = ["https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051716-scaled.jpg", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051716-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("Velimalai Sri Kumaraswamy Temple, Kumaracoil, Tamil Nadu 629301");
window.location.href = url;
}, function() {
alert("Could not get location");
});
}
}