📍 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
1D,2A, 2B,2C
Anna bus stand, Suchindram
Nagercoil Anna Bus Terminal
1D,2A,2B,2C
Anna bus stand, Suchindram
Kanniyakumari Bus Terminal
1H, 2A, 2B
Kundal, Agasthees
waram
Marthandam Bus Terminal
Kalliyakkavilai Bus Terminal
📖 Description:
Swamithoppu is a small village about 11 kms. from Kanniyakumari. Swamithoppu formerly known as Poovandanthoppu is situated in Tamaraikulam village of nanjil Nadu in Kanniyakumari district
📷 Image Gallery
×
const images = ["https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051798-1.jpg", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051798-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("Swamithopu Pathi, 4F8R+RJ8, S Thamaraikulam-Swamithoppu Rd, Swamitopur, Thamaraikulam, Tamil Nadu 629704"); window.location.href = url;
}, function() {
alert("Could not get location");
});
}
}