Skip to content

Instantly share code, notes, and snippets.

View NavNomad's full-sized avatar

NavNomad

  • Joined Jun 9, 2025
View GitHub Profile
@NavNomad
NavNomad / index.html
Created June 10, 2025 00:19
Untitled
<div ng-app="app" ng-controller="MapCtrl">
<!-- Leaflet Map -->
<leaflet center="center" defaults="defaults" geojson="geojson" style="height: 100vh;"></leaflet>
<!-- Info Box -->
<div class="popup-box" ng-show="selectedCountry.name">
<h3>{{selectedCountry.name}}</h3>
<p>🌍 Fun Fact: {{selectedCountry.fact || 'Click a country to see a fun fact!'}}</p>
<p>🧭 Status: {{selectedCountry.status || 'Not yet added to your wishlist.'}}</p>