forked from alberto-acevedo/cesium-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNavigation.js
85 lines (69 loc) · 3.42 KB
/
Navigation.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
define('Navigation', ['Knockout', 'NavigationViewModel', 'registerKnockoutBindings', 'DistanceLegendViewModel', 'CameraView'], function (Knockout, NavigationViewModel, registerKnockoutBindings, DistanceLegendViewModel, CameraView)
{
return {
distanceLegendViewModel : undefined,
navigationViewModel : undefined,
navigationDiv : undefined,
distanceLegendDiv : undefined,
terria : undefined,
initialize: function (mapContainer, viewer) {
this.terria = viewer;
this.terria.afterViewerChanged = new Cesium.Event();
this.terria.beforeViewerChanged = new Cesium.Event();
this.navigationDiv = document.createElement('div');
this.navigationDiv.setAttribute("id", "navigationDiv");
// this.navigationDiv.style.display = "inline-block";
// this.navigationDiv.style.margin = "2px";
// this.navigationDiv.style.position = "absolute";
// this.navigationDiv.style.right = "0px";
// this.navigationDiv.style.height = "45px";
// this.navigationDiv.style.top = "34px";
// this.navigationDiv.style.zIndex = "300";
//navigationDiv.style.border = "3px solid #8AC007";
this.distanceLegendDiv = document.createElement('div');
this.navigationDiv.setAttribute("id", "distanceLegendDiv");
// this.navigationDiv.style.display = "inline-block";
// this.navigationDiv.style.margin = "2px";
// this.navigationDiv.style.position = "absolute";
// this.navigationDiv.style.right = "57px";
// this.navigationDiv.style.top = "30px";
// this.navigationDiv.style.zIndex = "300";
//var mapContainer = document.getElementById(emp.map.container.get());
mapContainer.appendChild(this.navigationDiv);
mapContainer.appendChild(this.distanceLegendDiv);
this.terria.homeView = new CameraView(Cesium.Rectangle.MAX_VALUE);
// Register custom Knockout.js bindings. If you're not using the TerriaJS user interface, you can remove this.
registerKnockoutBindings();
this.distanceLegendViewModel = DistanceLegendViewModel.create({
container: this.distanceLegendDiv,
terria: this.terria,
mapElement: mapContainer
});
// Create the navigation controls.
this.navigationViewModel = NavigationViewModel.create({
container: this.navigationDiv,
terria: this.terria
});
//return this;
},
destroy: function ()
{
if (this.navigationViewModel)
this.navigationViewModel.destroy();
if (this.distanceLegendViewModel)
this.distanceLegendViewModel.destroy();
//this.navigationDiv = document.getElementById('navigationDiv');
if (this.navigationDiv)
this.navigationDiv.parentNode.removeChild(this.navigationDiv);
this.navigationDiv = undefined;
//var distanceLegendDiv = document.getElementById('distanceLegendDiv');
if (this.distanceLegendDiv)
this.distanceLegendDiv.parentNode.removeChild(this.distanceLegendDiv);
this.distanceLegendDiv = undefined;
if (this.terria)
this.terria.homeView = undefined;
}
};
}
);
//module.exports = Navigation;