Advertisement
OpPride

HilKaallenTargets

Jan 27th, 2025
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.92 KB | Cybersecurity | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Military Bases Map</title>
  5.     <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.css"/>
  6.     <script src="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.js"></script>
  7.     <style> #map { position: absolute; top: 0; bottom: 0; left: 0; right: 0; } </style>
  8. </head>
  9. <body>
  10.     <div id="map"></div>
  11.     <script>
  12.         var map = L.map('map').setView([39.8283, -98.5795], 5);
  13.         L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
  14.             attribution: '&copy; <a href="http://openstreetmap.org">OpenStreetMap</a>',
  15.             subdomains: ['a', 'b', 'c']
  16.         }).addTo(map);
  17.        
  18.         // Example marker
  19.         var marker = L.marker([33.645, -85.825]).addTo(map);
  20.         marker.bindPopup("Anniston Army Depot (Alabama)");
  21.        
  22.         // Add more markers as needed...
  23.     </script>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement