19 lines
654 B
HTML
19 lines
654 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<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>
|
||
|
<script src="https://unpkg.com/protomaps-leaflet@4.0.0/dist/protomaps-leaflet.js"></script>
|
||
|
<link rel="stylesheet" type="text/css" href="/common/styles.css" />
|
||
|
<meta charset="UTF-8">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="map"></div>
|
||
|
<script src="/common/map.js"></script>
|
||
|
</body>
|
||
|
</html>
|