-
Notifications
You must be signed in to change notification settings - Fork 0
/
configurationPanel.js
46 lines (46 loc) · 1.43 KB
/
configurationPanel.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
{
"configurationSettings": [{
"category": "<b>Choose template theme</b>",
"fields": [{
"placeHolder": "Defaults to map owner",
"label": "Owner Text:",
"fieldName": "owner",
"type": "string",
"tooltip": "Defaults to map owner"
}, {
"type": "string",
"fieldName": "theme",
"tooltip": "Color theme to use",
"label": "Color Scheme:",
"options": [{
"label": "Chrome",
"value": "chrome"
}, {
"label": "Seaside",
"value": "seaside"
}, {
"label": "Pavement",
"value": "pavement"
}]
}]
},
{
"category": "<b>Authentication details</b>",
"fields": [
{
"placeHolder": "example appid",
"label": "OAuth AppID:",
"fieldName": "oauthappid",
"type": "string",
"tooltip": "The AppID provided to you"
},
{
"type": "boolean",
"fieldName": "useapplogin",
"label": "Use App Login",
"tooltip": "Check to allow user not known to AGOL to access this app "
}
]
}],
"values": {"useapplogin": false}
}