-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpapers-webgl-globe.html
More file actions
25 lines (25 loc) · 1.13 KB
/
papers-webgl-globe.html
File metadata and controls
25 lines (25 loc) · 1.13 KB
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
<!DOCTYPE html>
<html>
<head>
<title>INSPIRE searches</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0px; padding: 0px }
#globe { height: 100% }
</style>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js">
</script>
<script type="text/javascript" src="src/google-webgl-globe/globe/third-party/Three/ThreeWebGL.js"></script>
<script type="text/javascript" src="src/google-webgl-globe/globe/third-party/Three/ThreeExtras.js"></script>
<script type="text/javascript" src="src/google-webgl-globe/globe/third-party/Three/RequestAnimationFrame.js"></script>
<script type="text/javascript" src="src/google-webgl-globe/globe/third-party/Three/Detector.js"></script>
<script type="text/javascript" src="src/google-webgl-globe/globe/globe.js"></script>
<script type="application/javascript" src="js/insts.json"></script>
<script type="text/javascript" src="js/globe.js"></script>
</head>
<body onload="initialize_globe()">
<div id="globe" style="width:100%; height:100%"></div>
</body>
</html>