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
/
ArcGisMapServerCatalogItem.json
59 lines (59 loc) · 2.11 KB
/
ArcGisMapServerCatalogItem.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
{
"type": "object",
"defaultProperties": [
"name",
"type",
"url"
],
"properties": {
"layers": {
"type": "string",
"title": "#Layers",
"description": "The comma-separated list of layer IDs to show. If this property is undefined,\nall layers are shown."
},
"maximumScale": {
"type": "number",
"title": "#Maximum scale",
"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."
},
"maximumScaleBeforeMessage": {
"type": "number",
"title": "#Maximum scale before message",
"description": "The denominator of the largest scale (smallest denominator) beyond which to show a message explaining that no further zoom levels are available, at the request\nof the data custodian."
},
"showTilesAfterMessage": {
"type": "boolean",
"title": "#Show tiles after message",
"description": "A value indicating whether to continue showing tiles when the {@link ArcGisMapServerCatalogItem#maximumScaleBeforeMessage}\nis exceeded.",
"format": "checkbox"
},
"allowFeaturePicking": {
"type": "boolean",
"title": "#Allow feature picking",
"description": "A value indicating whether features in this catalog item can be selected by clicking them on the map.",
"format": "checkbox"
},
"type": {
"type": "string",
"enum": [
"esri-mapServer"
],
"options": {
"hidden": true
}
}
},
"description": "A {@link ImageryLayerCatalogItem} representing a layer from an Esri ArcGIS MapServer.",
"title": "Esri ArcGIS MapServer",
"allOf": [
{
"$ref": "CatalogItem.json"
},
{
"$ref": "ImageryLayerCatalogItem.json"
},
{
"$ref": "CatalogMember.json"
}
]
}