-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (31 loc) · 966 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
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>RoundMap</title>
<link rel="stylesheet" type="text/css" href="./src/roundmap.css">
</head>
<body>
<div id="roundmap" class="roundmap">
<div class="world"></div>
<div class="marker-point">
<i class="marker"></i>
</div>
</div>
<script src="./src/animations.js" type="text/javascript"></script>
<script src="./src/dragger.js" type="text/javascript"></script>
<script src="./src/abstract-layer.js" type="text/javascript"></script>
<script src="./src/world.js" type="text/javascript"></script>
<script src="./src/marker.js" type="text/javascript"></script>
<script src="./src/roundmap.js" type="text/javascript"></script>
<script>
let $container = document.getElementById('roundmap');
let options = {
marker: { x: 125, y: 150 },
world: { x: 0, y: 0 },
rotateSpeed: 1000
};
new RoundMap($container, options);
</script>
</body>
</html>