📖 விளக்கம்: முட்டம் கன்னியாகுமரியில் இருந்து சுமார் 32 கிலோமீட்டர் தொலைவில்
அமைந்துள்ளது. இது ஒரு கம்பீரமான பாறைகள் நிறைந்த கடற்கரையாகும். இங்குள்ள
பாறைகள் மேல் அலைகள் மோதி பனிபோல் சிதறுவது கண்கொள்ளாக் காட்சியாகும்.
🕒 நேரம்:
📞 அவசர தொடர்பு எண்கள்
காவல்: 100
தீயணைப்பு: 101
ஆம்புலன்ஸ்: 108
மாவட்ட கட்டுப்பாட்டு மையம்: 1077
உள்ளாட்சி நிர்வாகம்: முட்டம் கிராம ஊராட்சி (7598641528)
சுற்றுலா துறை: 9176995866
📍 வழியைப் பெறுங்கள்:
🚌 பேருந்து விவரங்கள்
Bus Terminal
Route No.
Via
நாகர்கோவில் வடசேரி பேருந்து நிலையம்
14D
அண்ணா பேருந்து நிலையம், இராஜாக்கமங்கலம்
நாகர்கோவில் அண்ணா பேருந்து நிலையம்
14A,
14C,
14D,5F,5C
ஆசாரிப்பள்ளம்,வெள்ளமோடி
கன்னியாகுமரி பேருந்து நிலையம்
302
கோவளம், மணக்குடி
மார்த்தாண்டம் பேருந்து நிலையம்
46C
கருங்கல், திங்கள் நகர்
களியக்காவிளை பேருந்து நிலையம்
📷 பட தொகுப்பு
×
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); });
}