-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
44 lines (38 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="user-scalable=no width=device-width, initial-scale=1.0"/>
<title>Map Viewer</title>
<meta property="og:title" content="Map Viewer"/>
<meta name="description" content="View RMC-14 maps!"/>
<meta property="og:description" content="View RMC-14 maps!"/>
<meta property="og:image" content="icon.png"/>
<link rel="icon" type="image/png" href="icon.png">
<link rel="stylesheet" type="text/css" href="theme.css"/>
<script type="text/javascript" src="logic.js"></script>
</head>
<body>
<div id="map_container">
<div id="map_zoomable">
<!--img id="map_image" src="icon.png"/-->
<canvas id="canvas"></canvas>
</div>
</div>
<div class="toolbar">
<div class="buttons">
<button
title="Show/Hide Maps"
onclick="toggle_hidden('maplist')"
>#</button>
<button
id="labels_button"
title="Show/Hide Labels"
onclick="toggle_labels()"
>A</button>
</div>
<ul id="maplist" hidden>
</ul>
</div>
<body/>
</html>