This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
WebMapServiceCatalogItem.json
72 lines (72 loc) · 2.89 KB
/
WebMapServiceCatalogItem.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
{
"type": "object",
"defaultProperties": [
"name",
"type",
"url"
],
"properties": {
"layers": {
"type": "string",
"title": "#Layers",
"description": "The WMS layers to include. To specify multiple layers, separate them\nwith a commas."
},
"parameters": {
"type": "object",
"title": "#Parameters",
"description": "The additional parameters to pass to the WMS server when requesting images.\nIf this property is undefined, {@link WebMapServiceCatalogItem.defaultParameters} is used."
},
"tilingScheme": {
"type": "object",
"title": "#Tiling scheme",
"description": "The tiling scheme to pass to the WMS server when requesting images.\nIf this property is undefiend, the default tiling scheme of the provider is used."
},
"getFeatureInfoFormats": {
"type": "array",
"title": "#Get feature info formats",
"description": "The formats in which to try WMS GetFeatureInfo requests. If this property is undefined, the `WebMapServiceImageryProvider` defaults\nare used.",
"format": "tabs",
"items": {
"type": "enum"
}
},
"populateIntervalsFromTimeDimension": {
"type": "boolean",
"title": "#Populate intervals from time dimension",
"description": "A value indicating whether a time dimension, if it exists in GetCapabilities, should be used to populate\nthe {@link ImageryLayerCatalogItem#intervals}. If the {@link ImageryLayerCatalogItem#intervals} property is set explicitly\non this catalog item, the value of this property is ignored.",
"format": "checkbox"
},
"minScaleDenominator": {
"type": "number",
"title": "#Min scale denominator",
"description": "The denominator of the largest scale (smallest denominator) for which tiles should be requested. For example, if this value is 1000, then tiles representing\na scale larger than 1:1000 (i.e. numerically smaller denominator, when zooming in closer) will not be requested. Instead, tiles of the largest-available scale, as specified by this property,\nwill be used and will simply get blurier as the user zooms in closer."
},
"maxRefreshIntervals": {
"type": "number",
"title": "#Max refresh intervals",
"description": "The maximum number of intervals that can be created by a single\ndate range, when specified in the form time/time/periodicity.\neg. 2015-04-27T16:15:00/2015-04-27T18:45:00/PT15M has 11 intervals"
},
"type": {
"type": "string",
"enum": [
"wms"
],
"options": {
"hidden": true
}
}
},
"description": "A {@link ImageryLayerCatalogItem} representing a layer from a Web Map Service (WMS) server.",
"title": "Web Map Service (WMS)",
"allOf": [
{
"$ref": "CatalogItem.json"
},
{
"$ref": "ImageryLayerCatalogItem.json"
},
{
"$ref": "CatalogMember.json"
}
]
}