-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (86 loc) · 3.14 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<html>
<head>
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:700&display=swap" rel="stylesheet">
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v1.5.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.5.0/mapbox-gl.css' rel='stylesheet'>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="viewport">
<div class="modelLoadingWrapper">
<div class="hill">
<div class="car">
<div class="frame">
<img src="frame.svg">
</div>
<div class="wheels">
<div class="wheel" id="wheelFront">
<img src="wheel.svg">
</div>
<div class="wheel" id="wheelRear">
<img src="wheel.svg">
</div>
<div class="ground"> </div>
</div>
</div>
<div class="loading">
Loading
</div>
</div>
<canvas id="modelCanvas"></canvas>
</div>
<div id='map'></div>
</div>
<div id="stack">
<div id="graphButtons">
<button id="playButton">
<svg width="13" height="16" viewBox="0 0 13 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13 7.75L0.249999 15.1112L0.25 0.388783L13 7.75Z" fill="#7E7E7E" />
</svg>
</button>
<button id="pauseButton">
<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.25" width="3" height="10" fill="#A9A9A9" />
<rect x="6.75" width="3" height="10" fill="#A9A9A9" />
</svg>
</button>
<button id="stopButton">
<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="10" height="10" fill="#A9A9A9" />
</svg>
</button>
<button id="speedButton">1 X</button>
<button id="restartButton">
<svg width="15" height="13" viewBox="0 0 15 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M15 8.58307e-06L5.66667 6.20652L15 12.413L15 10.4659L8.5948 6.20655L15 1.94719L15 8.58307e-06Z" fill="#7E7E7E" />
<rect x="2" y="12" width="2" height="12" transform="rotate(-180 2 12)" fill="#7E7E7E" />
</svg>
</button>
<button id="timeButton">00:25:27</button>
</div>
<li id="graphOverviewBackground">
<div class="overviewWrapper">
<div id="overviewSeeker" ></div>
<div class="overviewSlider" id="overviewSliderStart" >
<div class="overviewSliderCenterTick"></div>
</div>
<canvas id="graphOverview"></canvas>
</div>
</li>
<div id="graphTimeBar"></div>
<ul id="sensorList"></ul>
<template id="dataVisualizerTemplate">
<li class="sensorItem">
<div class="graphInfo">
<h3> </h3>
<h4 class="valueReadout" id="sensorName"> </h4>
</div>
<canvas class="visualizerCanvases"></canvas>
</li>
</template>
</div>
</body>
<script src="./dist/bundle.js"></script>
</html>