Close

Sun Rise Point – Kanniyakumari

Sun Rise Point - Kanniyakumari

📖 Description: Sunrise Point in Kanyakumari, also known locally as Triveni Sangam or simply Sunrise View, is one of India’s most stunning vantage points — where the Bay of Bengal, Arabian Sea, and Indian Ocean.

🕒 Timings:

📞 Emergency Contacts

  • Police: 100
  • Fire: 101
  • Ambulance: 108
  • District Control Center: 1077
  • Local Administration: Kanniyakumari Municipality (04652-246279)
  • Tourism Dept: 9176995866

📍 Get Directions:

🚌 Bus Details

Bus TerminalRoute No.Via
Nagercoil Vadassery Bus Terminal1,2,304Anna bus Stand,Kottar,Suchindram,Kottarm
Nagercoil Anna Bus Terminal1,2,303Suchindram, Kottaram
Kanniyakumari Bus Terminal
Marthandam Bus Terminal303Thuckalay, Nagercoil
Kalliyakkavilai Bus Terminal303Thuckalay, Nagercoil

📷 Image Gallery

×
const images = ["https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/06/2025061111.jpg", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/06/2025061111.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=encodeURIComponentSunrise Point, 3HJ2XWV, Vavaturai Beach Rd, Kanniyakumari, Tamil Nadu"; 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); }); }