Island Adventure Map

Embark on an exciting journey across the island!

${story}

`; detailsDiv.style.display = 'block'; // Show Download Button document.getElementById('download-pdf').style.display = 'block'; }); }); // PDF Download Functionality document.getElementById('download-pdf').addEventListener('click', () => { const { jsPDF } = window.jspdf; const doc = new jsPDF(); // Add content to PDF doc.setFontSize(18); doc.text('Island Adventure Log', 10, 20); let yOffset = 40; document.querySelectorAll('.location-marker').forEach((marker, index) => { const name = marker.getAttribute('data-name'); const story = marker.getAttribute('data-story'); const image = marker.getAttribute('data-image'); doc.setFontSize(14); doc.text(`${index + 1}. ${name}`, 10, yOffset); doc.addImage(image, 'JPEG', 10, yOffset + 10, 80, 50); doc.setFontSize(12); doc.text(story, 10, yOffset + 70); yOffset += 90; }); // Save PDF doc.save('island-adventure-log.pdf'); });

The Island Adventure Map is a fun and interactive tool that lets users explore a virtual island, uncover hidden locations, and learn about different terrains, animals, and treasures! Designed to be colorful, engaging, and user-friendly, this tool is perfect for kids and adventure enthusiasts.

Key Features:

  • 🏝 Interactive Clickable Map – Explore different regions of the island.
  • 🗺 Hidden Locations – Discover treasure spots, forests, caves, and more.
  • 🦜 Fun Facts – Learn about island wildlife, terrain, and adventure challenges.
  • 📜 Downloadable Island Exploration Guide – Save findings as a PDF.
  • 🎨 Colorful, Modern & Engaging Design – A visually appealing experience.

How It Works:

  1. Users click on different areas of the map to reveal fun facts.
  2. They collect discoveries to build a unique adventure log.
  3. A PDF download option allows users to save their journey.