📖 Description: This memorial is a tribute to K.Kamarajar, the freedom fighter and former Chief Minister of Tamil Nadu, also called as ‘ Perunthalaivar’ and ‘Black Gandhi’ Kamarajar was simple and sincere politician form Tamil Nadu regarded as ‘ The Kingmaker’ of the congress party. He played vital roles in the administration of Tamil Nadu, by introducing education for downtrodden and also started the NOon meal Scheme for the students to encourage attendance. After his death, his ashes were kept at Kanniyakumari seashore for the public to pay homage, before being immersed in the Sea. The memorial also has a library functioning. The memorial is open to public from 7.00 a.m to 7.00 p.m.
🕒 Timings: 7:00 a.m. to 7:00 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/2025051728-scaled.jpg", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051728-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=encodeURIComponentPerunthalaivar Kamarajar Memorial Building, 3GHXHJP, 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); });
}