-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathengine.html
More file actions
56 lines (43 loc) · 2.18 KB
/
engine.html
File metadata and controls
56 lines (43 loc) · 2.18 KB
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
<!DOCTYPE html>
<html>
<head>
<link href="styles/styles.css" rel="stylesheet">
</head>
<body onload="process.mainModule.exports.documentReady()">
<div id="main_canvas" class='inst-label'>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="780px" height="4600px">
<!-- Oil Temp -->
<svg id='otl' x=0 y=0 width="140px" height="40px"></svg>
<svg id='otv' x=140 y=0 width="80px" height="40px"></svg>
<svg id='ot' x=240 y=0 width="650px" height="40px"></svg>
<!-- Oil Pressure -->
<svg id='opl' x=0 y=50 width="140px" height="60px"></svg>
<svg id='opv' x=140 y=50 width="80px" height="40px"></svg>
<svg id='op' x=240 y=50 width="650px" height="40px" ></svg>
<!-- Fuel Qty -->
<svg id='ful' x=0 y=100 width="140px" height="48px"></svg>
<svg id='fuv' x=140 y=100 width="80px" height="48px"></svg>
<svg id='fu' x=240 y=100 width="650px" height="40px" ></svg>
<!-- Volts -->
<svg id='vol' x=0 y=150 width="100px" height="40px"></svg>
<svg id='vov' x=100 y=150 width="80px" height="40px"></svg>
<!-- Amps -->
<svg id='aml' x=250 y=150 width="100px" height="40px"></svg>
<svg id='amv' x=350 y=150 width="80px" height="40px"></svg>
<svg id='eg1' x=50 y=220 width="25px" height="160px"></svg>
<svg id='eg2' x=80 y=220 width="25px" height="160px"></svg>
<svg id='eg3' x=110 y=220 width="25px" height="160px"></svg>
<svg id='eg4' x=140 y=220 width="25px" height="160px"></svg>
<svg id='egl' x=75 y=390 width="100px" height="40px"></svg>
<svg id='ch1' x=240 y=220 width="25px" height="160px"></svg>
<svg id='ch2' x=270 y=220 width="25px" height="160px"></svg>
<svg id='ch3' x=300 y=220 width="25px" height="160px"></svg>
<svg id='ch4' x=330 y=220 width="25px" height="160px"></svg>
<svg id='chl' x=265 y=390 width="100px" height="40px"></svg>
<svg id='tach' x=460 y=180 width=300 height=300></svg>
<svg id='tachv' x=560 y=270 width=100 height=40></svg>
<svg id='tachl' x=566 y=305 width=100 height=40></svg>
</svg>
</div>
</body>
</html>