Peer Muhammad Dargah
Peer Muhammad Dargah
🕒 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 | 313 Sector | Parvathipuram, Thuckalay |
| Nagercoil Anna Bus Terminal | 16D | Parvathipuram, Thuckalay |
| Kanniyakumari Bus Terminal | 303 | Nagercoil , Thuckalay |
| Marthandam Bus Terminal | 303, 382 | Swamiyar madam |
| Kalliyakkavilai Bus Terminal | 303, 382 | Marthandam, Azhagiaman dapam |
📖 Description:
This Dargah his named as the peer Muhammad Oliyullah, after the great philosopher Muhammad Appa, who wrote many books on philosophy. The anniversary of the great Philosopher is celebrated every Year on the full moon day in the month of Rajab.
📷 Image Gallery
×
const images = ["https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051789-scaled.jpg", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051789-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("Peer Mohammed Appa Dargha and Auditorium, 68W8+P94, Dargha Rd, Chakala, Thuckalay, Tamil Nadu 629175");
window.location.href = url;
}, function() {
alert("Could not get location");
});
}
}