forked from JJediny/DataSourceEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArcGisCatalogItem.json
35 lines (35 loc) · 1.12 KB
/
ArcGisCatalogItem.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
{
"title": "ESRI Mapserver layer",
"description": "One or more layers accessed through ESRI Mapserver",
"type": "object",
"allOf": [
{
"$ref": "CatalogItem.json"
},
{
"$ref": "ImageryLayerCatalogItem.json"
}
],
"defaultProperties": [
"name",
"type",
"url"
],
"properties": {
"type": {
"type": "string",
"enum": [
"esri-mapServer"
]
},
"layers": {
"type": "string",
"title": "Layers",
"description": "Comma-separated list of layer IDs to show. If this property is undefined, all layers are shown."
},
"maximumScale": {
"type": "number",
"description": "Gets or sets the denominator of the largest scale (smallest denominator) for which tiles should be requested. For example, if this value is 1000, then tiles representing\n a 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,\n will be used and will simply get blurier as the user zooms in closer."
}
}
}