forked from Tunguso4ka/map-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (43 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="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="resources/icon.png"/>
<link rel="icon" type="image/png" href="resources/icon.png">
<link rel="stylesheet" type="text/css" href="css/dark_theme.css"/>
<script type="text/javascript" src="scripts/logic.js"></script>
</head>
<body>
<canvas id="canvas">
</canvas>
<div class="toolbar">
<div class="buttons">
<button
title="Show/Hide Maps"
onclick="toggleMapsHidden()"
>#</button>
<button
title="Legend"
onclick="toggleLegendHidden()"
>?</button>
<button
title="Zoom in"
id="zoom_in"
onclick="adjustZoom(-5)"
>+</button>
<button
id="zoom_out"
title="Zoom out"
onclick="adjustZoom(2.5)"
>-</button>
</div>
<ul id="mapsbar" hidden>
</ul>
</div>
<body/>
</html>