Government Museum
Government Museum
🕒 Timings: 9:30 a.m. to 5:00 p.m.
📍 Get Directions:
🚌 Bus Details
| Bus Terminal | Route No. | Via |
|---|---|---|
| Vadassery Bus Stand | ||
| Anna Bus Terminal | 1,303 | |
| Kanniyakumari Bus Terminal | 1,303 | |
| Marthandam Bus Terminal | ||
| Kulasekaram Bus Terminal | ||
| Eraniel Bus Terminal |
📖 About the Memorial
This was established in 1991, as a multipurpose Museum. Good collection of sculptured artifacts and crafts of south Indian Temples can be found here. Visitors to the museum can enjoy the extensive display of exhibits which covers a diverse range of interests such as Anthropology, Archaeology, Numismatics, philately, Botany, Zoology, and Geology.
📷 Image Gallery
×
const images = ["https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051762-scaled.jpg", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051762-scaled.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("Government Museum");
window.location.href = url;
}, function() {
alert("Could not get location");
});
}
}