forked from 4qiu8/kinesis-for-windows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (49 loc) · 3 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
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<base target="_top">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Kinesis</title>
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet-routing-machine.css"/>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="main.css"/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet-routing-machine.min.js"></script>
<script src="https://unpkg.com/[email protected]/client-dist/socket.io.min.js"></script>
<script src="https://unpkg.com/[email protected]/lib/index.js"></script>
<script src="https://unpkg.com/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div id="map"></div>
<div class="card" id="control-panel">
<div class="card-body">
<div class="btn-group btn-group-sm" role="group" aria-label="Basic checkbox toggle button group">
<input type="checkbox" class="btn-check" id="pauseSwitch" autocomplete="off">
<label class="btn btn-outline-primary" for="pauseSwitch">Pause</label>
<button type="button" class="btn btn-outline-primary" id="undoButton">Undo</button>
<button type="button" class="btn btn-outline-primary" id="stopButton">Clear</button>
</div>
<div class="btn-group btn-group-sm" role="group">
<input type="radio" class="btn-check" name="speedChoice" id="speedChoice1" autocomplete="off" value="1" checked>
<label class="btn btn-outline-primary" for="speedChoice1">Walk</label>
<input type="radio" class="btn-check" name="speedChoice" id="speedChoice2" autocomplete="off" value="5">
<label class="btn btn-outline-primary" for="speedChoice2">Ride</label>
<input type="radio" class="btn-check" name="speedChoice" id="speedChoice3" autocomplete="off" value="20">
<label class="btn btn-outline-primary" for="speedChoice3">Drive</label>
</div>
<div class="btn-group btn-group-sm" role="group">
<input type="radio" class="btn-check" name="loopChoice" id="loopChoice1" autocomplete="off" value="off" checked>
<label class="btn btn-outline-primary" for="loopChoice1">Off</label>
<input type="radio" class="btn-check" name="loopChoice" id="loopChoice2" autocomplete="off" value="loop">
<label class="btn btn-outline-primary" for="loopChoice2">Loop</label>
<input type="radio" class="btn-check" name="loopChoice" id="loopChoice3" autocomplete="off" value="uturn">
<label class="btn btn-outline-primary" for="loopChoice3">U-Turn</label>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>