forked from TerriaJS/DataSourceEditor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
catalog.json
72 lines (72 loc) · 1.69 KB
/
catalog.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
{
"required": [],
"type": "object",
"title": "Terria data source",
"description": "This file configures one or more data sources for TerriaJS.",
"defaultProperties": [
"catalog"
],
"properties": {
"services": {
"title": "Services",
"propertyOrder": 2000,
"type": "array",
"items": {
"title": "Service"
}
},
"catalog": {
"title": "Catalog",
"$ref": "items.json",
"format": "",
"items": {
"title": "Top-level group"
}
},
"homeCamera": {
"title": "Home Camera",
"description": "Bounding box of initial view, given by four latitudes/longitudes",
"required": [
"east",
"north",
"south",
"west"
],
"type": "object",
"format": "grid",
"properties": {
"west": {
"type": "number"
},
"east": {
"type": "number"
},
"north": {
"type": "number"
},
"south": {
"type": "number"
}
}
},
"baseMapName": {
"title": "Base map",
"description": "The name of the base map to use. For example: Bing Maps Roads, Australian Topography, Natural Earth II",
"type": "string"
},
"corsDomains": {
"title": "CORS Domains",
"description": "A list of domains that can be accessed directly, since they are known to support CORS (cross-origin resource sharing).",
"items": {
"title": "Host",
"description": "Host name without protocol. For example: arcgis.com",
"type": "string"
},
"type": "array",
"format": "tabs"
}
},
"options": {
"disable_collapse": true
}
}