📍 செல்லும் பாதை: பாதைக்கு Google Maps பெற இங்கே சொடுக்கவும்.
🚌 பேருந்து விவரங்கள்
பேருந்து நிலையம்
பேருந்து எண்.
வழி
நாகர்கோவில் வடசேரி பேருந்து நிலையம்
1,2,303
அண்ணா பேருந்து நிலையம்,கோட்டார்,சுசீந்திரம்,கொட்டாரம்
நாகர்கோவில் அண்ணா பேருந்து நிலையம்
1,303
கோட்டார்,சுசீந்திரம்
கன்னியாகுமரி பேருந்து நிலையம்
மார்த்தாண்டம் பேருந்து நிலையம்
303
தக்கலை, நாகர்கோவில்
களியக்காவிளை பேருந்து நிலையம்
303
தக்கலை, நாகர்கோவில்
📖 விளக்கம்:
விவேகானந்த கேந்திராவின் தலைமையகம் 100 ஏக்கர் நிலப்பரப்பில் பரந்து விரிந்துள்ள ஒரு பெரிய முகாமாகும். தங்கும் வசதியில் எந்த நேரத்திலும் 1000 பேர் வரை தங்கலாம். விவேகானந்தர் சித்திர கண்காட்சி மற்றும் நூலகம் இங்கு கூடுதல் ஈர்ப்புகளாகும்.
📷 படக் காட்சியகம்
×
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");
});
}
}