-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathPathfinder.html
29 lines (26 loc) · 1.25 KB
/
Pathfinder.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/leaflet.css"/>
<link rel="stylesheet" href="css/plugins/leaflet.fullscreen.css"/>
<link rel="stylesheet" href="css/plugins/leaflet.MousePosition.css"/>
<link rel="stylesheet" href="css/plugins/leaflet.icons.css"/>
<link rel="stylesheet" href="css/plugins/leaflet.customZoom.css"/>
<link rel="stylesheet" href="css/plugins/leaflet.navigator.css"/>
<script type="module" src="js/leaflet.js"></script>
<script type="module" src="js/layers.js"></script>
<script type="module" src="js/MD5.js"></script>
<script type="module" src="js/plugins/leaflet.fullscreen.js"></script>
<script type="module" src="js/plugins/leaflet.zoom.js"></script>
<script type="module" src="js/plugins/leaflet.position.js"></script>
<script type="module" src="js/plugins/leaflet.plane.js"></script>
<script type="module" src="js/plugins/leaflet.navigator.js"></script>
<script type="module" src="wasm-pathfinder/pkg/wasm_pathfinder.js"></script>
<script type="module" src="js/main/main_pathfinding.js"></script>
</head>
<body>
<div id="map"></div>
</body>
</html>