-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (42 loc) · 1.17 KB
/
index.html
File metadata and controls
49 lines (42 loc) · 1.17 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
<html>
<head>
<title>MapGL Perf Tests</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<style>
html, body {
margin: 0;
padding: 0;
}
#map {
width: 100%;
height: 100%;
}
#results {
position: absolute;
width: 100vw;
bottom: 0;
z-index: 1000;
display: none;
font-family: 'Courier New', Courier, monospace;
font-size: 11px;
padding: 4px;
background: #fff;
max-height: 100vh;
overflow-y: auto;
}
#results table {
margin-bottom: 4px;
}
#results table td, #results table th {
padding: 0 4px;
text-align: left;
font-size: 11px;
}
</style>
</head>
<body>
<div id="map"></div>
<div id="results"></div>
<script type="module" src="./src/index.ts"></script>
</body>
</html>