-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 885 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Map</title>
<script src="Noise.js"></script>
<script src="MapGen.js"></script>
<script src="main.js"></script>
</head>
<body style="margin:0; overflow: hidden">
<canvas id="canvas" width=""></canvas>
<div id="buttons" style="position: absolute; top:0;left: 0;">
<div style="text-align: center;">
<button id="newseed">Carte aléatoire</button>
</div>
<div>
<button id="plus">+</button>
<button id="minus">-</button>
<span id="zoomlevel" style="color: white;font-family: sans-serif"></span>
</div>
<div style="text-align: center;">
<button id="up">↑</button>
</div>
<div>
<button id="left">←</button>
<button id="down">↓</button>
<button id="right">→</button>
</div>
</div>
</body>
</html>