-
Notifications
You must be signed in to change notification settings - Fork 10
/
appschema.json
85 lines (85 loc) · 2.67 KB
/
appschema.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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"propertiesInfo": {
"title": "UI and Map",
"categoryInfos": [{
"title": "Toolbar",
"propertyInfos": [{
"type": "color",
"label": "Background Color",
"name": "toolBarBackgroundColor",
"value": "#323232"
}, {
"type": "color",
"label": "Border Color",
"name": "toolBarBorderColor",
"value": "#aaaaaa"
}, {
"type": "color",
"label": "Font Color",
"name": "toolBarFontColor",
"value": "#ffffff"
}]
}, {
"title": "Buttons",
"propertyInfos": [{
"type": "color",
"label": "Background Color",
"name": "mainButtonBackgroundColor",
"value": "#196fa6"
}, {
"type": "color",
"label": "Border Color",
"name": "mainButtonBorderColor",
"value": "#007ac2"
}, {
"type": "color",
"label": "Pressed Color",
"name": "mainButtonPressedColor",
"value": "#166090"
}, {
"type": "color",
"label": "Font Color",
"name": "mainButtonFontColor",
"value": "#ffffff"
}, {
"type": "number",
"label": "Border Width",
"name": "mainButtonBorderWidth",
"minimum": "1",
"maximum": "4",
"value" : "1"
}, {
"type": "number",
"label": "Border Radius",
"name": "mainButtonRadius",
"minimum": "0",
"maximum": "10",
"value" : "1"
}]
}, {
"title": "Map",
"propertyInfos": [{
"type": "number",
"label": "Default Latitude",
"name": "mapDefaultLat",
"value": "39.8665",
"minimum": "-180",
"maximum": "180"
}, {
"type": "number",
"label": "Default Longitude",
"name": "mapDefaultLong",
"value": "-97.3105",
"minimum": "-180",
"maximum": "180"
}, {
"type": "number",
"label": "Default Zoom Level",
"name": "mapDefaultZoomLevel",
"value": "3",
"minimum": "0",
"maximum": "19"
}]
}]
}
}