Muttom Beach
Muttom Beach
📖 Description: It is 32 kms. from kanniyakumari and 16 kms. from Nagercoil. It is majestic and hugged seashore because of its beautiful huge Rock cutting out into the sea. The waves that touches the rocks create a mystic atmosphere.
🕒 Timings:
📞 Emergency Contacts
- Police: 100
- Fire: 101
- Ambulance: 108
- District Control Center: 1077
- Local Administration: Muttom village Panchayat (7598641528)
- Tourism Dept: 9176995866
📍 Get Directions:
🚌 Bus Details
| Bus Terminal | Route No. | Via |
|---|---|---|
| Nagercoil Vadassery Bus Terminal | 14D | Anna bus stand , Rajakkamangalam |
| Nagercoil Anna Bus Terminal | 14A, 14C, 14D,5F,5C | Villukuri, Thuckalay |
| Kanniyakumari Bus Terminal | 302 | Kovalam, Manakudy |
| Marthandam Bus Terminal | 46C | Karungal, Thingal nagar |
| Kalliyakkavilai Bus Terminal |
📷 Image Gallery
×
const images = ["https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051799.jpg", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051799.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=encodeURIComponentMuttom Beach, Vellimalai, Muttom, Tamil Nadu 629202";
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); });
}