-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdojo-config.js
57 lines (52 loc) · 1.31 KB
/
dojo-config.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
var dojoConfig = {
baseUrl : 'lib',
// debug config for always refresh
urlArgs: "v=" + (new Date()).getTime(),
waitSeconds : 0,
packages : [{
name : 'dojo',
location : 'dojo-release-1.9.1/dojo'
}, {
name : 'dojox',
location : 'dojo-release-1.9.1/dojox'
}, {
name : 'dijit',
location : 'dojo-release-1.9.1/dijit'
}, {
name : 'Assets',
location : 'Cesium/Source/Assets'
}, {
name : 'Core',
location : 'Cesium/Source/Core'
}, {
name : 'DynamicScene',
location : 'Cesium/Source/DynamicScene'
}, {
name : 'Renderer',
location : 'Cesium/Source/Renderer'
}, {
name : 'Scene',
location : 'Cesium/Source/Scene'
}, {
name : 'Shaders',
location : 'Cesium/Source/Shaders'
}, {
name : 'ThirdParty',
location : 'Cesium/Source/ThirdParty'
}, {
name : 'Widgets',
location : 'Cesium/Source/Widgets'
}, {
name : 'Dojo',
location : 'Cesium/Source/Widgets/Dojo'
}, {
name : 'Workers',
location : 'Cesium/Source/Workers'
}, {
name : 'Cesium',
location : 'Cesium/Source'
}, {
name : 'OpenAviationMap',
location : 'OpenAviationMap'
}]
};