forked from TerriaJS/DataSourceEditor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
GeoJsonCatalogItem.json
53 lines (53 loc) · 1.03 KB
/
GeoJsonCatalogItem.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
{
"title": "GeoJSON file",
"type": "object",
"allOf": [
{
"$ref": "CatalogItem.json"
}
],
"defaultProperties": [
"name",
"type",
"url"
],
"properties": {
"type": {
"type": "string",
"enum": [
"geojson"
]
},
"style": {
"type": "object",
"title": "Style",
"description": "Display properties to override the default (random colors etc.)",
"properties": {
"lineColor": {
"title": "Line color",
"type": "string"
},
"lineAlpha": {
"title": "Line alpha",
"type": "number"
},
"fillColor": {
"title": "Fill color",
"type": "string"
},
"fillPolygons": {
"title": "Fill polygons",
"type": "boolean"
},
"pointColor": {
"title": "Color of points",
"type": "string"
},
"lineWidth": {
"title": "Line width",
"type": "integer"
}
}
}
}
}