51 lines
1.6 KiB
HTML
51 lines
1.6 KiB
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
<title>Vite + TS</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container">
|
||
|
|
<main id="app">
|
||
|
|
<h1>Map with layers & control</h1>
|
||
|
|
<p>
|
||
|
|
This maps shows the default
|
||
|
|
<a
|
||
|
|
href="https://github.com/allartk/leaflet.offline/blob/master/docs/api.md#new-tilelayeroffline"
|
||
|
|
target="_blank"
|
||
|
|
>layer</a
|
||
|
|
>
|
||
|
|
and control provided by leaflet.offline. Click the buttons on the left
|
||
|
|
side to download tiles from the visible area at zoom levels 13 & 16
|
||
|
|
(see the script). Enable the offline tiles layer to see what is
|
||
|
|
already offline available.
|
||
|
|
</p>
|
||
|
|
<p>
|
||
|
|
Total in database:
|
||
|
|
<span id="storage"></span> files
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<div id="progress-wrapper">
|
||
|
|
<div class="">Download Progress</div>
|
||
|
|
<div class="flex-grow-1 ml-2 my-1">
|
||
|
|
<div id="progress" class="progress">
|
||
|
|
<div
|
||
|
|
id="progressbar"
|
||
|
|
role="progressbar"
|
||
|
|
style="width: 0%"
|
||
|
|
aria-valuenow="0"
|
||
|
|
aria-valuemin="0"
|
||
|
|
aria-valuemax="100"
|
||
|
|
></div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div id="map" style="height: 75vh"></div>
|
||
|
|
</main>
|
||
|
|
</div>
|
||
|
|
<script type="module" src="/src/main.ts"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|