-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
50 lines (43 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=1080px, initial-scale=1.0">
<!-- icons -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#334e6d">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="theme-color" content="#334e6d">
<!-- Open Graph tags -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://maps14.tanukij.dev" />
<meta property="og:title" content="Map Viewer" />
<meta property="og:description" content="View Space Station 14 maps!" />
<meta property="og:image" content="https://maps14.tanukij.dev/apple-touch-icon.png">
<meta property="og:image:width" content="180">
<meta property="og:image:height" content="180">
<link type="application/json+oembed" href="https://maps14.tanukij.dev/oembed.json" />
<!--------------------->
<!-- Twitter tags -->
<meta property="twitter:domain" content="maps14.tanukij.dev">
<meta property="twitter:url" content="https://maps14.tanukij.dev/">
<meta name="twitter:title" content="Map Viewer">
<meta name="twitter:description" content="View Space Station 14 maps!">
<meta name="twitter:image" content="https://maps14.tanukij.dev/logos/logo.svg">
<!------------------>
<title>Map Viewer 14</title>
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/ol.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div id="map" class="map"></div>
<canvas style="display: none" id="space"></canvas>
<!--<script src="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.14.1/build/ol.js"></script>-->
<script src="./js/map.js" type="module"></script>
</body>
</html>