-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
28 lines (26 loc) · 1012 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
<html>
<link href="styles.css" media="all" rel="stylesheet">
<script src="//code.jquery.com/jquery-2.2.4.js"></script>
<script src="wwtsdk.js" type="text/javascript"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/buzz/1.2.0/buzz.min.js"></script>
<script src="tts.js" type="text/javascript"></script>
<script src="game.js" type="text/javascript"></script>
<script>
var wwt;
function initialize() {
wwt = wwtlib.WWTControl.initControl("WWTCanvas");
wwt.settings.set_showConstellationFigures(false);
wwt.settings.set_showCrosshairs(false);
wwt.settings.set_showConstellationBoundries(false);
wwt.add_ready(wwtReady);
}
function wwtReady() {
wwt.loadImageCollection("http://www.worldwidetelescope.org/COMPLETE/wwtcomplete.wtml");
// Put your custom initialization code here.
}
</script>
</head>
<body onload="initialize()">
<div id="WWTCanvas" style="width:1150px; height:750px;"></div>
</body>
</html>