diff --git a/mapa.html b/mapa.html
index b1267930..e4efc559 100644
--- a/mapa.html
+++ b/mapa.html
@@ -27,16 +27,68 @@
attribution: '© OpenStreetMap contributors',
}).addTo(map);
- // Add a marker for a tourism site (e.g., Taj Mahal)
- const marker = L.marker([27.1751, 78.0421]).addTo(map);
- marker.bindPopup('Taj Mahal
A UNESCO World Heritage Site.').openPopup();
+ const TajMahal = L.marker([27.1751, 78.0421]).addTo(map);
+ TajMahal.bindPopup('Taj Mahal
A UNESCO World Heritage Site.').openPopup();
- // Add more markers as needed for other sites
const qutubMinar = L.marker([28.5245, 77.1855]).addTo(map);
qutubMinar.bindPopup('Qutub Minar
A historical monument in Delhi.');
const gatewayOfIndia = L.marker([18.922, 72.8347]).addTo(map);
gatewayOfIndia.bindPopup('Gateway of India
Iconic tourist attraction in Mumbai.');
+
+ const redFort = L.marker([28.6562, 77.2410]).addTo(map);
+ redFort.bindPopup('Red Fort
A UNESCO World Heritage Site in Delhi.');
+
+ const hawaMahal = L.marker([26.9239, 75.8267]).addTo(map);
+ hawaMahal.bindPopup('Hawa Mahal
The Palace of Winds in Jaipur.');
+
+ const charminar = L.marker([17.3616, 78.4747]).addTo(map);
+ charminar.bindPopup('Charminar
A historic monument in Hyderabad.');
+
+ const mysorePalace = L.marker([12.3052, 76.6551]).addTo(map);
+ mysorePalace.bindPopup('Mysore Palace
A majestic palace in Mysore.');
+
+ const victoriaMemorial = L.marker([22.5448, 88.3426]).addTo(map);
+ victoriaMemorial.bindPopup('Victoria Memorial
A museum and tourist attraction in Kolkata.');
+
+ const konarkSunTemple = L.marker([19.8876, 86.0945]).addTo(map);
+ konarkSunTemple.bindPopup('Konark Sun Temple
A 13th-century Sun temple in Odisha.');
+
+ const golkondaFort = L.marker([17.3833, 78.4011]).addTo(map);
+ golkondaFort.bindPopup('Golkonda Fort
A historic fortress near Hyderabad.');
+
+ const kochiFort = L.marker([9.9665, 76.2426]).addTo(map);
+ kochiFort.bindPopup('Fort Kochi
A historic area known for its colonial charm in Kerala.');
+
+ const eiffelTower = L.marker([48.8584, 2.2945]).addTo(map);
+ eiffelTower.bindPopup('Eiffel Tower
An iconic landmark in Paris, France.');
+
+ const statueOfLiberty = L.marker([40.6892, -74.0445]).addTo(map);
+ statueOfLiberty.bindPopup('Statue of Liberty
A symbol of freedom in New York City, USA.');
+
+ const greatWall = L.marker([40.4319, 116.5704]).addTo(map);
+ greatWall.bindPopup('Great Wall of China
A historic wonder in Beijing, China.');
+
+ const christRedeemer = L.marker([-22.9519, -43.2105]).addTo(map);
+ christRedeemer.bindPopup('Christ the Redeemer
A famous statue in Rio de Janeiro, Brazil.');
+
+ const sydneyOperaHouse = L.marker([-33.8568, 151.2153]).addTo(map);
+ sydneyOperaHouse.bindPopup('Sydney Opera House
A world-famous architectural marvel in Sydney, Australia.');
+
+ const pyramidsGiza = L.marker([29.9792, 31.1342]).addTo(map);
+ pyramidsGiza.bindPopup('Pyramids of Giza
An ancient wonder in Cairo, Egypt.');
+
+ const machuPicchu = L.marker([-13.1631, -72.5450]).addTo(map);
+ machuPicchu.bindPopup('Machu Picchu
An Incan citadel in the Andes Mountains, Peru.');
+
+ const colosseum = L.marker([41.8902, 12.4922]).addTo(map);
+ colosseum.bindPopup('Colosseum
An ancient amphitheater in Rome, Italy.');
+
+ const santorini = L.marker([36.3932, 25.4615]).addTo(map);
+ santorini.bindPopup('Santorini
A stunning island in Greece known for its white-washed buildings and sunsets.');
+
+
+