forked from JJediny/DataSourceEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImageryLayerCatalogItem.json
More file actions
53 lines (53 loc) · 1.91 KB
/
Copy pathImageryLayerCatalogItem.json
File metadata and controls
53 lines (53 loc) · 1.91 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
{
"title": "Imagery layer",
"description": "A generic source of imagery",
"type": "object",
"allOf": [
{
"$ref": "CatalogItem.json"
}
],
"defaultProperties": [
"name",
"type",
"url"
],
"properties": {
"opacity": {
"title": "Opacity",
"description": "the opacity (alpha) of the data item, where 0.0 is fully transparent and 1.0 is fully opaque. Default: 0.6",
"type": [
"number",
"string"
]
},
"treat404AsError": {
"title": "Treat 404 response codes as error",
"description": "whether a 404 response code when requesting a tile should be treated as an error. If false, 404s\n are assumed to just be missing tiles and need not be reported to the user.",
"type": "boolean",
"format": "checkbox"
},
"ignoreUnknownTileErrors": {
"title": "Ignore unknown title errors",
"description": "Gets or sets a value indicating whether non-specific (no HTTP status code) tile errors should be ignored. This is a\n last resort, for dealing with odd cases such as data sources that return non-images (eg XML) with a 200 status code.\n No error messages will be shown to the user.",
"type": "string"
},
"intervals": {
"title": "Intervals",
"description": "The {@link TimeIntervalCollection} defining the intervals of distinct imagery. If this catalog item \n is not time-dynamic, undefined.",
"type": "object"
},
"keepOnTop": {
"title": "Keep on top",
"description": "Keeps the layer on top of all other imagery layers. This property is observable.",
"type": "boolean",
"format": "checkbox"
},
"clipToRectangle": {
"title": "Clip to Rectangle",
"description": "Whether this dataset should be clipped to the designated bounding box. False by default.",
"type": "boolean",
"format": "checkbox"
}
}
}