Bharatha Mata temple
Bharatha Mata temple
🕒 Timings:
📍 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 | 1,2,303 | Anna bus Stand , Kottar,Suchindram-Kottarm |
| Nagercoil Anna Bus Terminal | 1,2,303 | Suchindram , Kottaram |
| Kanniyakumari Bus Terminal | ||
| Marthandam Bus Terminal | 303 | Thuckalay, Nagercoil |
| Kalliyakkavilai Bus Terminal | 303 | Thuckalay, Nagercoil |
📖 Description:
Sri Ramayana Darshanam and exhibition of paintings highlighting 108 important incidents from the Valmiki Ramayanam made in 6” x 4” panels in mural format b) 27ft. Height Veer Hanuman statue in black granite stone in front of the Ramayan darshanam building c) Bharat Mata temple in the first floor of building in which a 15ft. height bronze idol of the Bharat Mata and d) 18” x 12” size panels (3 numbers of 1) Sri Rama pattabhishekam 2) Bhagwat Geeta Sandesh 3) Ananthasayanam of Shri Padmanabha Swamy e) 12” x18 “ size panels (2 numbers) in order to imbibe value orientation and concept of Motherhood in the younger Generation.
📷 Image Gallery
×
const images = ["https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051713-1.jpg", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051713-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("Ramayan Mandir, 3HR2+V6C, Vivekanandapuram, Kanniyakumari, Tamil Nadu 629702");
window.location.href = url;
}, function() {
alert("Could not get location");
});
}
}