-
Notifications
You must be signed in to change notification settings - Fork 5
/
map_compare_style
64 lines (55 loc) · 1.47 KB
/
map_compare_style
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
// released under Open Source GPL License Copyright © 2023 Ka Hei Chow
// ####################################### //
// ###### Map Comparison Styles ###### //
// ####################################### //
// This script stores the style settings for the comparison map tool.
// map widgets for app
exports.mapControl = {
all: false,
layerList: false,
zoomControl: true,
scaleControl: true,
mapTypeControl: false,
fullscreenControl: false,
drawingToolsControl: false
};
// label styling dict
exports.label = {
position: 'bottom-center',
fontSize: '16px',
backgroundColor: '#0047AB',
fontWeight: '500',
color: 'white'
};
// side bar styling dict
exports.mainPanel = {
width: '250px',
backgroundColor: 'black'
};
// app title styling dict
exports.title = {
'position': 'top-center',
'fontSize': '24px',
'color': 'white',
'fontWeight': 'bold',
'fontFamily': 'serif',
'backgroundColor': 'black',
'padding': '20px 20px 4px 4px',
};
// dark background
exports.dark_theme = {'backgroundColor': 'black'};
// button styling dict
exports.start_button = {
'width': '120px',
'backgroundColor': 'black',
'color': '#919090',
'padding': '15px 4px 4px 4px'
};
// styling dict for data layer label
exports.map_label = {
position: 'bottom-center',
fontSize: '16px',
backgroundColor: '#0047AB',
fontWeight: '500',
color: 'white'
};