-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (36 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Spirare Editor Desktop</title>
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; connect-src * blob:; img-src * data: blob:; media-src * data: blob:; style-src 'self' 'unsafe-inline' https://use.typekit.net/ https://p.typekit.net/; font-src *; script-src 'self' 'unsafe-inline' 'unsafe-eval'; script-src-elem 'self' https://dev.virtualearth.net/ https://unpkg.com/ https://www.gstatic.com/ https://preview.babylonjs.com/ https://cdn.babylonjs.com/; worker-src 'self' blob:"
/>
<style type="text/css">
html,
body,
#cesiumContainer,
#spirare_canvas {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
#cesiumContainer {
position: relative;
pointer-events: none;
}
#spirare_canvas {
position: relative;
top: -100%;
}
</style>
</head>
<body>
<div id="cesiumContainer"></div>
<canvas id="spirare_canvas"></canvas>
<script src="./dist/renderer.js"></script>
</body>
</html>