Mathoor Aqueduct
Mathoor Aqueduct
📖 Description: It was constructed in 1966. The Mathoor aqueduct trough is the tallest as well as the longest trough in Asia, having a height of 115 ft. and length of one km. The trough has height of 7ft. with the width of 7 ft 6 inches. The canal is being shouldered by 28 huge pillars.
🕒 Timings: 6:30 a.m. to 6:30 p.m.
📞 Emergency Contacts
- Police: 100
- Fire: 101
- Ambulance: 108
- District Control Center: 1077
- Local Administration: Aruvikkarai village Panchayat (9442272582)
- Tourism Dept: 9176995866
📍 Get Directions:
🚌 Bus Details
| Bus Terminal | Route No. | Via |
|---|---|---|
| Nagercoil Vadassery Bus Terminal | ||
| Nagercoil Anna Bus Terminal | ||
| Kanniyakumari Bus Terminal | ||
| Marthandam Bus Terminal | 89G,89S | Attoor, Thiruvattar |
| Kalliyakkavilai Bus Terminal |
📷 Image Gallery
×
const images = ["https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051632-scaled.png", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051632-scaled.png"];
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=encodeURIComponentMathoor Aqueduct, Tamil Nadu 629164";
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); });
}