-
Notifications
You must be signed in to change notification settings - Fork 0
/
editor.html
38 lines (37 loc) · 1.07 KB
/
editor.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
<!DOCTYPE html>
<html>
<head>
<title>Canvas</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"
integrity="sha512-NmLkDIU1C/C88wi324HBc+S2kLhi08PN5GDeUVVVC/BVt/9Izdsc9SVeVfA1UZbY3sHUlDSyRXhCzHfr6hmPPw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<style>
html,
body {
margin: 0;
background: #fff0cc;
}
#canvas {
border: 1px solid black;
bottom: 0;
display: block;
left: 0;
margin: auto;
padding: 0;
position: absolute;
right: 0;
top: 0;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<ul id="tileList"></ul>
<button id="exportMap">Export Map to console</button>
<script type="module" src="./js/editor.js"></script>
</body>
</html>