-
Notifications
You must be signed in to change notification settings - Fork 0
/
tester3.html
executable file
·115 lines (85 loc) · 2.22 KB
/
tester3.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!doctype html>
<html lang="en">
<head>
<title>WebGL Globe</title>
<meta charset="utf-8">
<style type="text/css">
html {
height: 100%;
}
body {
margin: 0;
padding: 0;
background: #666 url(globe/loading.gif) center center no-repeat;
color: #ffffff;
font-family: sans-serif;
font-size: 13px;
line-height: 20px;
height: 100%;
}
#info {
font-size: 11px;
position: absolute;
bottom: 5px;
background-color: rgba(0, 0, 0, 0.8);
border-radius: 3px;
right: 10px;
padding: 10px;
}
a {
color: #aaa;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.bull {
padding: 0px 5px;
color: #555;
}
#title {
position: absolute;
top: 20px;
width: 320px;
left: 20px;
background-color: rgba(0, 0, 0, 0.2);
font: 20px/20px Georgia;
padding: 15px;
}
.subtitle {
font: 14px/14px Georgia;
}
</style>
</head>
<body>
<div id="container"></div>
<script type="text/javascript" src="ThreeWebGL.js"></script>
<script type="text/javascript" src="ThreeExtras.js"></script>
<script type="text/javascript" src="RequestAnimationFrame.js"></script>
<script type="text/javascript" src="Detector.js"></script>
<script type="text/javascript" src="globe.js"></script>
<script type="text/javascript">
var globe = DAT.Globe(document.getElementById('container'), function(label) {
return new THREE.Color([
0x004c7f, 0x00785f, 0x00a53f, 0x00d21f, 0x00ff00][label]);
});
xhr = new XMLHttpRequest();
xhr.open('GET', 'data.json', true);
xhr.onreadystatechange = function(e) {
// If we've received the data
if ( xhr.readyState === 4 && xhr.status === 200 ) {
// Parse the JSON
var data = [['m', [ 42.360082, -71.058880, .5 ]]];
//var data = JSON.parse( xhr.responseText );
// Tell the globe about your JSON data
globe.addData( data[0][1], {format: 'magnitude', name: data[0][0]} );
// Create the geometry
globe.createPoints();
// Begin animation
globe.animate();
}
};
xhr.send(null);
</script>
</body>
</html>