📍 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
1,2,303
Anna bus Stand , Kottar,Suchindram-Kottarm
Nagercoil Anna Bus Terminal
1303
Kottar, Suchindrum
Kanniyakumari Bus Terminal
Marthandam Bus Terminal
303
Thuckalay, Nagercoil
Kalliyakkavilai Bus Terminal
303
Thuckalay, Nagercoil
📖 Description:
A huge camp spread over 100 acres of land is the Head Quarters of Vivekananda Kendra. The Lodging facility can accommodate upto 1000 persons at any given time. Vivekananda Pictorial Exhibition and Library are additional attractions here.
📷 Image Gallery
×
const images = ["https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051777-1.jpg", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051777-1.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("Vivekananda Kendra, Kanyakumari, VIVEKANANDA KENDRA, Vivekanandapuram, Kanniyakumari, Tamil Nadu 629702");
window.location.href = url;
}, function() {
alert("Could not get location");
});
}
}