This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (44 loc) · 1.89 KB
/
index.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<title>Sailing</title>
<meta charset="utf-8">
<!-- jQuery -->
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<!-- Leaflet -->
<link rel="stylesheet" href="node_modules/leaflet/dist/leaflet.css" />
<link rel="stylesheet" href="node_modules/leaflet-contextmenu/dist/leaflet.contextmenu.css"/>
<link rel="stylesheet" href="node_modules/leaflet-toolbar/dist/leaflet.toolbar.css"/>
<link rel="stylesheet" href="node_modules/leaflet-easybutton/src/easy-button.css"/>
<script src="node_modules/leaflet/dist/leaflet.js"></script>
<script src="node_modules/leaflet-contextmenu/dist/leaflet.contextmenu.js"></script>
<script src="node_modules/leaflet-toolbar/dist/leaflet.toolbar.js"></script>
<script src="node_modules/@mapbox/leaflet-omnivore/leaflet-omnivore.min.js"></script>
<script src="node_modules/leaflet-graticule/Leaflet.Graticule.js"></script>
<script src="node_modules/leaflet-easybutton/src/easy-button.js"></script>
<script src="node_modules/leaflet.repeatedmarkers/Leaflet.RepeatedMarkers.js"></script>
<!-- libs -->
<script src="node_modules/reconnecting-websocket/dist/reconnecting-websocket-iife.min.js"></script>
<script src="node_modules/cbor-js/cbor.js"></script>
<link rel="stylesheet" href="switch.css"/>
<!-- Sources -->
<link rel="stylesheet" href="main.css" />
<script src="src/fmod.js"></script>
<script src="src/format.js"></script>
<script src="src/map.js"></script>
<script src="src/ws.js"></script>
<script src="src/session.js"></script>
<script src="src/path.js"></script>
<script src="src/main.js"></script>
</head>
<body>
<div id="container">
<div id="map"></div>
<div include="src/controls.html"></div>
<div include="src/latlng.html"></div>
<div include="src/info.html"></div>
<div include="src/offline.html"></div>
<div include="src/loading.html"></div>
</div>
</body>
</html>