-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathlayer-data-config.json
More file actions
521 lines (520 loc) · 14.7 KB
/
layer-data-config.json
File metadata and controls
521 lines (520 loc) · 14.7 KB
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
{
"tabs": [
{
"name": "Core",
"rows": [
{
"forceHeight": "64px",
"components": [
{
"field": "type",
"name": "Layer Type",
"description": "",
"type": "dropdown",
"width": 2,
"options": [
"data",
"header",
"image",
"model",
"query",
"tile",
"vector",
"vectortile",
"velocity"
]
},
{
"field": "name",
"name": "Layer Name",
"description": "",
"type": "textnotrim",
"width": 8
},
{
"field": "visibility",
"name": "Initially On",
"description": "",
"type": "checkbox",
"width": 2,
"defaultChecked": false
}
]
},
{
"name": "Data Tiles",
"components": [
{
"field": "demtileurl",
"name": "Data Tile URL",
"description": "",
"type": "text",
"width": 10
},
{
"field": "demparser",
"name": "DEM Parser",
"description": "",
"type": "dropdown",
"width": 2,
"options": ["rgba", "tif"]
}
]
},
{
"components": [
{
"field": "tileformat",
"name": "Tile Format",
"description": "",
"type": "dropdown",
"width": 4,
"options": ["tms", "wmts", "wms"]
},
{
"field": "controlled",
"name": "Controlled",
"description": "",
"type": "checkbox",
"width": 2,
"defaultChecked": false
},
{
"field": "initialOpacity",
"name": "Initial Opacity",
"description": "0 (transparent) to 1 (opaque)",
"type": "number",
"min": 0,
"width": 2
}
]
},
{
"components": [
{
"field": "minZoom",
"name": "Minimum Zoom",
"description": "",
"type": "number",
"min": 0,
"step": 1,
"width": 3
},
{
"field": "maxNativeZoom",
"name": "Maximum Native Zoom",
"description": "",
"type": "number",
"min": 0,
"step": 1,
"width": 2
},
{
"field": "maxZoom",
"name": "Maximum Zoom",
"description": "",
"type": "number",
"min": 0,
"step": 1,
"width": 3
}
]
},
{
"name": "Other",
"components": [
{
"field": "boundingBox",
"name": "Bounding Box",
"description": "minx,miny,maxx,maxy",
"type": "textarray",
"width": 12
}
]
},
{
"name": "Actions",
"components": [
{
"name": "Populate Fields From tilemapresource.xml or from cog/info",
"description": "If the above URL is relative to the Missions/{mission} directory and the tileset contains a tilemapresource.xml within it, queries that xml and auto-fills the 'Minimum Zoom', 'Maximum Native Zoom' and 'Bounding Box' fields above. If it is a COG and TiTiler is true, the COG's data will be queried instead.",
"type": "button",
"action": "tile-populate-from-x",
"width": 6
}
]
}
]
},
{
"name": "Shader",
"rows": [
{
"name": "Shader",
"components": [
{
"field": "variables.shader.type",
"name": "Shader",
"description": "",
"type": "dropdown",
"width": 2,
"options": ["colorize", "image"]
},
{
"field": "variables.shader.units",
"name": "Units",
"description": "",
"type": "text",
"width": 2
},
{
"field": "variables.shader.sigfigs",
"name": "SigFigs",
"description": "The lowest (smallest number) zoom level for which to show this layer. If the current Map's zoom level is less than this, the layer will not be rendered even if the layer is still on.",
"type": "number",
"min": 0,
"step": 1,
"width": 2
},
{
"field": "variables.shader.noDataValues",
"name": "NoData Values",
"description": "minx,miny,maxx,maxy",
"type": "textarray",
"width": 6
}
]
},
{
"subname": "Color Ramps",
"description": "Color ramps for which to dynamically color the data tiles. A good site for color ramps is: <a target='_blank' href='https://developers.arcgis.com/javascript/latest/visualization/symbols-color-ramps/esri-color-ramps/'>https://developers.arcgis.com/javascript/latest/visualization/symbols-color-ramps/esri-color-ramps/</a>",
"components": [
{
"field": "variables.shader.ramps.0",
"name": "Color Ramp 0",
"description": "Like: #3900b3,#714dbf,#9e6b90,#cf9270,#ebb698,transparent",
"type": "textarray",
"width": 12
}
]
},
{
"components": [
{
"field": "variables.shader.ramps.1",
"name": "Color Ramp 1",
"description": "Like: #3900b3,#714dbf,#9e6b90,#cf9270,#ebb698,transparent",
"type": "textarray",
"width": 12
}
]
},
{
"components": [
{
"field": "variables.shader.ramps.2",
"name": "Color Ramp 2",
"description": "Like: #3900b3,#714dbf,#9e6b90,#cf9270,#ebb698,transparent",
"type": "textarray",
"width": 12
}
]
},
{
"components": [
{
"field": "variables.shader.ramps.3",
"name": "Color Ramp 3",
"description": "Like: #3900b3,#714dbf,#9e6b90,#cf9270,#ebb698,transparent",
"type": "textarray",
"width": 12
}
]
},
{
"components": [
{
"field": "variables.shader.ramps.4",
"name": "Color Ramp 4",
"description": "Like: #3900b3,#714dbf,#9e6b90,#cf9270,#ebb698,transparent",
"type": "textarray",
"width": 12
}
]
},
{
"components": [
{
"field": "variables.shader.ramps.5",
"name": "Color Ramp 5",
"description": "Like: #3900b3,#714dbf,#9e6b90,#cf9270,#ebb698,transparent",
"type": "textarray",
"width": 12
}
]
},
{
"components": [
{
"field": "variables.shader.ramps.6",
"name": "Color Ramp 6",
"description": "Like: #3900b3,#714dbf,#9e6b90,#cf9270,#ebb698,transparent",
"type": "textarray",
"width": 12
}
]
},
{
"components": [
{
"field": "variables.shader.ramps.7",
"name": "Color Ramp 7",
"description": "Like: #3900b3,#714dbf,#9e6b90,#cf9270,#ebb698,transparent",
"type": "textarray",
"width": 12
}
]
},
{
"components": [
{
"field": "variables.shader.ramps.8",
"name": "Color Ramp 8",
"description": "Like: #3900b3,#714dbf,#9e6b90,#cf9270,#ebb698,transparent",
"type": "textarray",
"width": 12
}
]
},
{
"components": [
{
"field": "variables.shader.ramps.9",
"name": "Color Ramp 9",
"description": "Like: #3900b3,#714dbf,#9e6b90,#cf9270,#ebb698,transparent",
"type": "textarray",
"width": 12
}
]
},
{
"components": [
{
"field": "variables.shader.ramps.10",
"name": "Color Ramp 10",
"description": "Like: #3900b3,#714dbf,#9e6b90,#cf9270,#ebb698,transparent",
"type": "textarray",
"width": 12
}
]
},
{
"components": [
{
"field": "variables.shader.ramps.11",
"name": "Color Ramp 11",
"description": "Like: #3900b3,#714dbf,#9e6b90,#cf9270,#ebb698,transparent",
"type": "textarray",
"width": 12
}
]
},
{
"components": [
{
"field": "variables.shader.ramps.12",
"name": "Color Ramp 12",
"description": "Like: #3900b3,#714dbf,#9e6b90,#cf9270,#ebb698,transparent",
"type": "textarray",
"width": 12
}
]
}
]
},
{
"name": "Time",
"rows": [
{
"name": "Time",
"components": [
{
"field": "time.enabled",
"name": "Time Enabled",
"description": "",
"type": "switch",
"width": 3,
"defaultChecked": false
},
{
"field": "time.type",
"name": "Time Type",
"description": "",
"type": "dropdown",
"width": 3,
"options": ["requery", "local"]
},
{
"field": "time.format",
"name": "Time Format",
"description": "",
"type": "text",
"width": 3
},
{
"field": "time.compositeTile",
"name": "Composite Time Tiles",
"description": "",
"type": "checkbox",
"width": 3,
"defaultChecked": false
}
]
}
]
},
{
"name": "Interface",
"rows": [
{
"name": "Interface",
"subname": "Key Bindings",
"components": [
{
"field": "variables.shortcutSuffix",
"name": "Alt + {letter} Toggle Shortcut",
"description": "A single letter to 'ALT + {letter}' toggle the layer on and off. Please verify that your chosen shortcut does not conflict with other system or browser-level keyboard shortcuts.",
"type": "text",
"width": 6
}
]
},
{
"subname": "Downloads",
"components": [
{
"field": "variables.downloadURL",
"name": "Download URL",
"description": "Provides a menu option for users to download the specified source data file for the layer.",
"type": "text",
"width": 12
}
]
}
]
},
{
"name": "Information",
"rows": [
{
"name": "Information",
"subname": "Layer Tags",
"subdescription": "Assign tags to this layer so that they may be searched upon through the LayersTool. A category may be specified with the following pattern: 'category:tag'",
"components": [
{
"field": "tags.0",
"name": "Tag",
"description": "",
"type": "text",
"width": 2
},
{
"field": "tags.1",
"name": "Tag",
"description": "",
"type": "text",
"width": 2
},
{
"field": "tags.2",
"name": "Tag",
"description": "",
"type": "text",
"width": 2
},
{
"field": "tags.3",
"name": "Tag",
"description": "",
"type": "text",
"width": 2
},
{
"field": "tags.4",
"name": "Tag",
"description": "",
"type": "text",
"width": 2
},
{
"field": "tags.5",
"name": "Tag",
"description": "",
"type": "text",
"width": 2
}
]
},
{
"components": [
{
"field": "tags.6",
"name": "Tag",
"description": "",
"type": "text",
"width": 2
},
{
"field": "tags.7",
"name": "Tag",
"description": "",
"type": "text",
"width": 2
},
{
"field": "tags.8",
"name": "Tag",
"description": "",
"type": "text",
"width": 2
},
{
"field": "tags.9",
"name": "Tag",
"description": "",
"type": "text",
"width": 2
},
{
"field": "tags.10",
"name": "Tag",
"description": "",
"type": "text",
"width": 2
},
{
"field": "tags.11",
"name": "Tag",
"description": "",
"type": "text",
"width": 2
}
]
},
{
"subname": "Description",
"subdescription": "A freeform markdown description of the layer. In the LayersTool, users may click the information icon beside the layer's name to view this information.",
"components": [
{
"field": "description",
"name": "Description",
"description": "",
"type": "markdown",
"width": 12
}
]
}
]
}
]
}