-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnew.html
24 lines (24 loc) · 908 Bytes
/
new.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
<!DOCTYPE html>
<html>
<head>
<title>Coplano</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet-pandanic-theme.min.css"> -->
</head>
<body>
<div id="map" style="height: 900px; width: 100%;"></div>
<input type="file" id="fileInput">
<div>
<input type="checkbox" id="show-rat-runs">
<label> Afficher les rat runs</label><br>
</div>
<div id="dead-ends"></div>
<div id="rat-run-output"></div>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="leaflet.geometryutil.js"></script>
<script src="leaflet-arrowheads.js"></script>
<script src="graph.js"></script>
<script src="map.js"></script>
</body>
</html>