-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebglobe.js
236 lines (205 loc) · 7.9 KB
/
webglobe.js
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
//"use strict";
/*jshint browser: true */
/*global Cesium: false */
/*global console: false */
function getSceneCenter(){
var lat = null;
var lon = null;
var alt = null;
if (viewer.scene.mode == 3) {
var windowPosition = new Cesium.Cartesian2(viewer.container.clientWidth / 2, viewer.container.clientHeight / 2);
var pickRay = viewer.scene.camera.getPickRay(windowPosition);
var pickPosition = viewer.scene.globe.pick(pickRay, viewer.scene);
var pickPositionCartographic = viewer.scene.globe.ellipsoid.cartesianToCartographic(pickPosition);
lon = pickPositionCartographic.longitude * (180 / Math.PI);
lat = pickPositionCartographic.latitude * (180 / Math.PI);
alt = viewer.camera.getMagnitude();
} else if (viewer.scene.mode == 2) {
var camPos = viewer.camera.positionCartographic;
lat = camPos.latitude * (180 / Math.PI);
lon = camPos.longitude * (180 / Math.PI);
alt = viewer.camera.getMagnitude();
}
return [lat, lon, alt];
}
var imageryViewModels = [];
imageryViewModels.push(new Cesium.ProviderViewModel({
name : 'Open Street Map Offline',
iconUrl : Cesium.buildModuleUrl('Widgets/Images/ImageryProviders/openStreetMap.png'),
tooltip : 'OpenStreetMap (OSM) is a collaborative project to create a free editable map of the world.\nhttp://www.openstreetmap.org',
creationFunction : function() {
return new Cesium.createOpenStreetMapImageryProvider({
url : 'tiles/osm',
minimumLevel: 0,
maximumLevel: 4
});
}
}));
imageryViewModels.push(new Cesium.ProviderViewModel({
name : 'Open\u00adStreet\u00adMap',
iconUrl : Cesium.buildModuleUrl('Widgets/Images/ImageryProviders/openStreetMap.png'),
tooltip : 'OpenStreetMap (OSM) is a collaborative project to create a free editable map of the world.\nhttp://www.openstreetmap.org',
creationFunction : function() {
return new Cesium.createOpenStreetMapImageryProvider({
url : '//a.tile.openstreetmap.org/'
});
}
}));
var viewer_options = {
animation: false,
fullscreenButton: true,
geocoder: false,
homeButton: true,
infoBox: false,
sceneModePicker: true,
selectionIndicator: false,
timeline: false,
navigationHelpButton: false,
navigationInstructionsInitiallyVisible: false,
scene3DOnly: false,
skyBox: false,
skyAtmosphere: false,
sceneMode: Cesium.SceneMode.SCENE3D,
baseLayerPicker: true,
imageryProviderViewModels: imageryViewModels,
terrainProviderViewModels: [],
// imageryProvider: new Cesium.createOpenStreetMapImageryProvider({
// url: 'https://a.tile.openstreetmap.org/'
// }),
// terrainProvider : new Cesium.CesiumTerrainProvider({
// url : '//assets.agi.com/stk-terrain/world'
// }),
targetFrameRate: 100,
orderIndependentTranslucency: false,
contextOptions: {
webgl : {
alpha: false,
depth: false,
stencil: false,
antialias: false,
premultipliedAlpha: true,
preserveDrawingBuffer: false,
failIfMajorPerformanceCaveat: false
},
allowTextureFilterAnisotropic : false
}
};
var router = {
clear: function(msg){
viewer.dataSources.removeAll();
viewer.scene.primitives.removeAll();
},
polygons: function(msg){
var promise = Cesium.GeoJsonDataSource.load(msg.polys);
promise.then(function(dataSource) {
viewer.dataSources.add(dataSource);
var entities = dataSource.entities.values;
for (var i = 0; i < entities.length; i++) {
var entity = entities[i];
var alpha = msg.alpha;
if(entity.properties.alpha)
alpha = entity.properties.alpha;
if(entity.properties.fill){
entity.polygon.material = Cesium.Color.fromCssColorString(entity.properties.fill.valueOf()).withAlpha(alpha);
} else if(msg.fill){
entity.polygon.material = Cesium.Color.fromCssColorString(msg.fill).withAlpha(alpha);
} else {
entity.polygon.material = Cesium.Color.TRANSPARENT;
}
console.log(entity);
//TODO
if(entity.properties.stroke){
entity.polygon.stroke = Cesium.Color.fromCssColorString(entity.properties.stroke.valueOf()).withAlpha(alpha);
} else if(msg.stroke){
entity.polygon.stroke = Cesium.Color.fromCssColorString(msg.stroke).withAlpha(alpha);
} else {
entity.polygon.outline = false;
}
//TODO
if(entity.properties.stroke_width){
entity.polygon.strokeWidth = parseFloat(entity.properties.stroke_width);
} else if(msg.stroke_width){
entity.polygon.strokeWidth = msg.stroke_width;
} else {
entity.polygon.outline = false;
}
if(entity.properties.extrude_height)
entity.polygon.extrudedHeight = parseFloat(entity.properties.extrude_height);
else if(msg.extrude_height)
entity.polygon.extrudedHeight = msg.extrude_height;
}
}).otherwise(function(error){
//Display any errrors encountered while loading.
console.error(error);
});
},
points: function(msg){
for(var i=0;i<msg.lat.length;i++){
var newpoint = {
position: Cesium.Cartesian3.fromDegrees(msg.lon[i], msg.lat[i], msg.alt[i]),
point: {
pixelSize: msg.size[i],
color: Cesium.Color.fromCssColorString(msg.colour[i])
}
};
if(msg.label[i]){
newpoint.label = {
text: msg.label[i],
font: '14pt monospace',
style: Cesium.LabelStyle.FILL_AND_OUTLINE,
outlineWidth: 2,
verticalOrigin: Cesium.VerticalOrigin.BOTTOM,
pixelOffset: new Cesium.Cartesian2(0, -9)
};
}
viewer.entities.add(newpoint);
}
},
bars: function(msg){
for(var i=0;i<msg.lat.length;i++){
viewer.entities.add({
name: 'bar',
polyline: {
positions : Cesium.Cartesian3.fromDegreesArrayHeights(
[msg.lon[i], msg.lat[i], 0, msg.lon[i], msg.lat[i], msg.alt[i]]
),
width: msg.width[i],
material: new Cesium.PolylineOutlineMaterialProperty({
color : Cesium.Color.fromCssColorString(msg.colour[i])
//outlineWidth : 2,
//outlineColor : Cesium.Color.BLACK
})
}
});
}
},
cam_reset: function(msg){
viewer.camera.flyHome();
},
cam_center: function(msg){
if(msg.alt===null)
msg.alt = viewer.camera.positionCartographic();
viewer.camera.flyTo({destination:Cesium.Cartesian3.fromDegrees(msg.lon,msg.lat,msg.alt)});
},
title: function(msg){
document.title = msg.title;
}
};
var viewer = new Cesium.Viewer('webglobe', viewer_options);
var ws = new WebSocket("ws://"+window.location.host);
ws.onmessage = function(msg){
msg = JSON.parse(msg.data);
console.log(msg);
router[msg.command](msg);
};
ws.onopen = function(e){
ws.send('sally_forth');
};
var pos_interval_handle = setInterval(function() {
var pos = viewer.camera.positionCartographic;
var lat = pos.latitude *180/Math.PI;
var lon = pos.longitude*180/Math.PI;
var alt = pos.height /1000;
document.getElementById('currentpos').innerHTML =
lat.toFixed(5) + "°, " + lon.toFixed(5) + "°, " + alt.toFixed(0);
}, 1000);