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
86
87
88
89
90
91
92
93
94
95
|
/*
* Copyright 2015 Anton Tananaev (anton@traccar.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
Ext.define('Traccar.Style', {
singleton: true,
refreshPeriod: 60 * 1000,
reconnectTimeout: 60 * 1000,
reportTimeout: 120 * 1000,
normalPadding: 10,
windowWidth: 800,
windowHeight: 600,
formFieldWidth: 275,
dateTimeFormat24: 'Y-m-d H:i:s',
dateTimeFormat12: 'Y-m-d g:i:s a',
timeFormat24: 'H:i',
timeFormat12: 'g:i a',
dateFormat: 'Y-m-d',
weekStartDay: 1,
deviceWidth: 400,
toastWidth: 300,
reportHeight: 250,
columnWidthNormal: 100,
mapDefaultLat: 48.8567,
mapDefaultLon: 2.3508,
mapDefaultZoom: 4,
mapRouteColor: [
'#F06292',
'#BA68C8',
'#4DD0E1',
'#4DB6AC',
'#FF8A65',
'#A1887F'
],
mapRouteWidth: 5,
mapTextColor: 'rgba(50, 50, 50, 1.0)',
mapTextStrokeColor: 'rgba(255, 255, 255, 1.0)',
mapTextStrokeWidth: 2,
mapTextOffset: 2,
mapTextFont: 'bold 12px sans-serif',
mapColorOnline: 'rgba(77, 250, 144, 1.0)',
mapColorUnknown: 'rgba(250, 190, 77, 1.0)',
mapColorOffline: 'rgba(255, 162, 173, 1.0)',
mapScaleNormal: 1,
mapScaleSelected: 1.5,
mapMaxZoom: 18,
mapDelay: 500,
mapAccuracyColor: 'rgba(96, 96, 96, 1.0)',
mapGeofenceTextColor: 'rgba(14, 88, 141, 1.0)',
mapGeofenceColor: 'rgba(21, 127, 204, 1.0)',
mapGeofenceOverlayOpacity: 0.2,
mapGeofenceWidth: 5,
mapGeofenceRadius: 9,
mapAnimateMarkerDuration: 2000,
mapAnimateMarkerTimeout: 40,
coordinatePrecision: 6,
numberPrecision: 2,
reportGridStyle: 'borderTop: 1px solid lightgray',
chartPadding: '20 40 10 10',
chartMarkerRadius: 3,
chartMarkerHighlightScaling: 1.5
});
|