-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathwab-measure.js
79 lines (72 loc) · 2.32 KB
/
wab-measure.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
define([], function () {
return {
isDebug: true,
mapOptions: {
basemap: 'satellite',
center: [-96.59179687497497, 39.09596293629694],
zoom: 5,
sliderStyle: 'small'
},
titles: {
header: 'CMV WAB Widgets Test',
subHeader: 'This is an example of using Web App Builder widgets with CMV',
pageTitle: 'CMV WAB Widgets Test'
},
panes: {
left: {
splitter: true,
style: 'width:360px;'
}
},
collapseButtonsPane: 'center', //center or outer
operationalLayers: [],
widgets: {
eMeasure: {
include: true,
id: 'eMeasure',
type: 'titlePane',
position: 0,
title: 'Enhanced Measure',
iconClass: 'fas fa-fw fa-paint-brush',
open: true,
path: 'jimu/BaseWidgetPanel',
options: {
widgetManager: true,
config: {
widgets: [
{
id: 'WABMeasure',
uri: 'widgets/Measure/Widget'
}
]
}
}
},
saveSession: {
include: true,
id: 'saveSession',
type: 'titlePane',
position: 0,
title: 'Save Session',
iconClass: 'fas fa-save',
open: true,
path: 'jimu/BaseWidgetPanel',
options: {
widgetManager: true,
config: {
widgets: [
{
id: 'WABSaveSession',
uri: 'widgets/SaveSession/Widget',
config: {
fileNameForAllSessions: 'cmvSessions.json',
fileNameTplForSession: 'cmvSessions_${name}.json'
}
}
]
}
}
}
}
};
});