| <html> |
| <head> |
| <script src='https://unpkg.com/maplibre-gl@2.1.9/dist/maplibre-gl.js'></script> |
| <link href='https://unpkg.com/maplibre-gl@2.1.9/dist/maplibre-gl.css' rel='stylesheet' /> |
| <style> |
| |
| body { |
| margin: 0; |
| } |
| |
| #map { |
| width: 100%; |
| height: 100%; |
| } |
| |
| </style> |
| <title>Baremaps</title> |
| </head> |
| <body> |
| <div id="map"></div> |
| <script> |
| |
| // Initialize the map |
| let map = new maplibregl.Map({ |
| container: 'map', |
| style: '/style.json', |
| hash: true |
| }); |
| map.addControl(new maplibregl.NavigationControl()); |
| |
| </script> |
| </body> |
| </html> |