| <!DOCTYPE html> |
| <html> |
| <head> |
| <title>OSM Map on Hugging Face Spaces</title> |
| <link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" /> |
| <script src="https://unpkg.com/leaflet/dist/leaflet.js"></script> |
| <style> |
| #map { height: 400px; } |
| </style> |
| </head> |
| <body> |
| <div id="map"></div> |
| <script> |
| |
| const tileUrl = 'https://huggingface.co/datasets/{username}/{dataset_name}/resolve/main/{z}/{x}/{y}.png'; |
| const attribution = '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'; |
| |
| |
| const map = L.map('map').setView([51.505, -0.09], 13); |
| |
| |
| L.tileLayer(tileUrl, { attribution }).addTo(map); |
| </script> |
| </body> |
| </html> |
|
|