mirror of
https://github.com/garraflavatra/gpstool.git
synced 2025-01-18 03:37:58 +00:00
19 lines
716 B
HTML
19 lines
716 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>gpstool</title>
|
||
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="" />
|
||
|
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js" integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin=""></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="app">
|
||
|
<noscript>
|
||
|
Please enable JavaScript in your browser to use gpstool.
|
||
|
</noscript>
|
||
|
</div>
|
||
|
<script type="module" src="/src/app.js"></script>
|
||
|
</body>
|
||
|
</html>
|