forked from JJediny/DataSourceEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebMapServiceCatalogGroup.json
76 lines (76 loc) · 1.81 KB
/
WebMapServiceCatalogGroup.json
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
{
"title": "WMS group ('GetCapabilities')",
"description": "A number of layers from a Web Mapping Service server",
"type": "object",
"allOf": [
{
"$ref": "grouptypes.json"
},
{
"$ref": "CatalogMember.json"
},
{
"$ref": "ImageryLayerCatalogItem.json"
}
],
"defaultProperties": [
"name",
"type",
"url"
],
"properties": {
"type": {
"type": "string",
"enum": [
"wms-getCapabilities"
]
},
"dataCustodian": {
"$ref": "r_datacustodian.json"
},
"parameters": {
"title": "WMS parameters",
"$ref": "wms-parameters.json"
},
"itemProperties": {
"type": "object",
"title": "Item Properties",
"description": "Additional properties applied to each item in the group, overriding values retrieved from data sources.",
"defaultProperties": [
"rectangle"
],
"properties": {
"info": {
"title": "Information metadata",
"$ref": "r_info.json"
}
},
"$ref": "WebMapServiceCatalogItem.json",
"allOf": [
{
"$ref": "wms-properties.json"
},
{
"$ref": "CatalogItem.json"
},
{
"$ref": "ImageryLayerCatalogItem.json"
}
]
},
"blacklist": {
"$ref": "r_blacklist.json"
},
"titleField": {
"type": "string",
"title": "Title field",
"description": "The field name to use as the primary title in the catalog view. Default 'title', but 'name' or 'abstract' are possible."
},
"flatten": {
"type": "boolean",
"format": "checkbox",
"title": "Flatten hierarchy",
"description": "Whether the list of layers queried from GetCapabilities should be flattened into a list with no hierarchy."
}
}
}