mapicgc-gl-js 0.0.50 → 0.0.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mapicgc-gl.css +1000 -360
- package/dist/mapicgc-gl.js +114 -114
- package/dist/mapicgc-gl.umd.js +114 -114
- package/docu_Map.md +0 -0
- package/package.json +14 -1
- package/public/mapicgc-gl.css +1000 -360
- package/src/config.js +1 -1
- package/src/configNode.js +1 -1
- package/src/controls/LogoControl.js +2 -1
- package/src/controls/MouseCoordinatesControl.js +18 -6
- package/src/map/Map.js +263 -65
- package/test/exemples/addImageLayerICGC.html +1 -1
- package/test/exemples/addMouseCoordinateControl.html +1 -1
- package/test/exemples/addVectorLayerICGC.html +3 -2
- package/test/exemples/advancedExemple.html +10 -3
- package/test/exemples/fetchData.html +15 -2
- package/test/exemples/fetchDataAndMenu.html +22 -3
- package/test/exemples/addGeopackage.html +0 -54
package/dist/mapicgc-gl.css
CHANGED
|
@@ -1,133 +1,115 @@
|
|
|
1
1
|
.maplibregl-map {
|
|
2
|
+
-webkit-tap-highlight-color: rgb(0 0 0/0);
|
|
2
3
|
font: 12px/20px Helvetica Neue, Arial, Helvetica, sans-serif;
|
|
3
4
|
overflow: hidden;
|
|
4
5
|
position: relative;
|
|
5
|
-
-webkit-tap-highlight-color: rgb(0 0 0/0)
|
|
6
6
|
}
|
|
7
|
-
|
|
8
7
|
.maplibregl-canvas {
|
|
9
8
|
left: 0;
|
|
10
9
|
position: absolute;
|
|
11
|
-
top: 0
|
|
10
|
+
top: 0;
|
|
12
11
|
}
|
|
13
|
-
|
|
14
12
|
.maplibregl-map:fullscreen {
|
|
15
13
|
height: 100%;
|
|
16
|
-
width: 100
|
|
14
|
+
width: 100%;
|
|
17
15
|
}
|
|
18
|
-
|
|
19
16
|
.maplibregl-ctrl-group button.maplibregl-ctrl-compass {
|
|
20
|
-
touch-action: none
|
|
17
|
+
touch-action: none;
|
|
21
18
|
}
|
|
22
|
-
|
|
23
19
|
.maplibregl-canvas-container.maplibregl-interactive,
|
|
24
20
|
.maplibregl-ctrl-group button.maplibregl-ctrl-compass {
|
|
25
21
|
cursor: grab;
|
|
26
22
|
-moz-user-select: none;
|
|
27
23
|
-webkit-user-select: none;
|
|
28
24
|
-ms-user-select: none;
|
|
29
|
-
user-select: none
|
|
25
|
+
user-select: none;
|
|
30
26
|
}
|
|
31
27
|
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
32
31
|
.maplibregl-canvas-container.maplibregl-interactive.maplibregl-track-pointer {
|
|
33
|
-
cursor: pointer
|
|
32
|
+
cursor: pointer;
|
|
34
33
|
}
|
|
35
|
-
|
|
36
34
|
.maplibregl-canvas-container.maplibregl-interactive:active,
|
|
37
35
|
.maplibregl-ctrl-group button.maplibregl-ctrl-compass:active {
|
|
38
|
-
cursor: grabbing
|
|
36
|
+
cursor: grabbing;
|
|
39
37
|
}
|
|
40
|
-
|
|
41
38
|
.maplibregl-canvas-container.maplibregl-touch-zoom-rotate,
|
|
42
39
|
.maplibregl-canvas-container.maplibregl-touch-zoom-rotate .maplibregl-canvas {
|
|
43
|
-
touch-action: pan-x pan-y
|
|
40
|
+
touch-action: pan-x pan-y;
|
|
44
41
|
}
|
|
45
|
-
|
|
46
42
|
.maplibregl-canvas-container.maplibregl-touch-drag-pan,
|
|
47
43
|
.maplibregl-canvas-container.maplibregl-touch-drag-pan .maplibregl-canvas {
|
|
48
|
-
touch-action: pinch-zoom
|
|
44
|
+
touch-action: pinch-zoom;
|
|
49
45
|
}
|
|
50
|
-
|
|
51
46
|
.maplibregl-canvas-container.maplibregl-touch-zoom-rotate.maplibregl-touch-drag-pan,
|
|
52
|
-
.maplibregl-canvas-container.maplibregl-touch-zoom-rotate.maplibregl-touch-drag-pan
|
|
53
|
-
|
|
47
|
+
.maplibregl-canvas-container.maplibregl-touch-zoom-rotate.maplibregl-touch-drag-pan
|
|
48
|
+
.maplibregl-canvas {
|
|
49
|
+
touch-action: none;
|
|
54
50
|
}
|
|
55
|
-
|
|
56
51
|
.maplibregl-canvas-container.maplibregl-touch-drag-pan.maplibregl-cooperative-gestures,
|
|
57
|
-
.maplibregl-canvas-container.maplibregl-touch-drag-pan.maplibregl-cooperative-gestures
|
|
58
|
-
|
|
52
|
+
.maplibregl-canvas-container.maplibregl-touch-drag-pan.maplibregl-cooperative-gestures
|
|
53
|
+
.maplibregl-canvas {
|
|
54
|
+
touch-action: pan-x pan-y;
|
|
59
55
|
}
|
|
60
|
-
|
|
61
56
|
.maplibregl-ctrl-bottom-left,
|
|
62
57
|
.maplibregl-ctrl-bottom-right,
|
|
63
58
|
.maplibregl-ctrl-top-left,
|
|
64
59
|
.maplibregl-ctrl-top-right {
|
|
65
60
|
pointer-events: none;
|
|
66
61
|
position: absolute;
|
|
67
|
-
z-index: 2
|
|
62
|
+
z-index: 2;
|
|
68
63
|
}
|
|
69
|
-
|
|
70
64
|
.maplibregl-ctrl-top-left {
|
|
71
65
|
left: 0;
|
|
72
|
-
top: 0
|
|
66
|
+
top: 0;
|
|
73
67
|
}
|
|
74
|
-
|
|
75
68
|
.maplibregl-ctrl-top-right {
|
|
76
69
|
right: 0;
|
|
77
|
-
top: 0
|
|
70
|
+
top: 0;
|
|
78
71
|
}
|
|
79
|
-
|
|
80
72
|
.maplibregl-ctrl-bottom-left {
|
|
81
73
|
bottom: 0;
|
|
82
|
-
left: 0
|
|
74
|
+
left: 0;
|
|
83
75
|
}
|
|
84
|
-
|
|
85
76
|
.maplibregl-ctrl-bottom-right {
|
|
86
77
|
bottom: 0;
|
|
87
|
-
right: 0
|
|
78
|
+
right: 0;
|
|
88
79
|
}
|
|
89
|
-
|
|
90
80
|
.maplibregl-ctrl {
|
|
91
81
|
clear: both;
|
|
92
82
|
pointer-events: auto;
|
|
93
|
-
transform: translate(0)
|
|
83
|
+
transform: translate(0);
|
|
94
84
|
}
|
|
95
|
-
|
|
96
85
|
.maplibregl-ctrl-top-left .maplibregl-ctrl {
|
|
97
86
|
float: left;
|
|
98
|
-
margin: 10px 0 0 10px
|
|
87
|
+
margin: 10px 0 0 10px;
|
|
99
88
|
}
|
|
100
|
-
|
|
101
89
|
.maplibregl-ctrl-top-right .maplibregl-ctrl {
|
|
102
90
|
float: right;
|
|
103
|
-
margin: 10px 10px 0 0
|
|
91
|
+
margin: 10px 10px 0 0;
|
|
104
92
|
}
|
|
105
|
-
|
|
106
93
|
.maplibregl-ctrl-bottom-left .maplibregl-ctrl {
|
|
107
94
|
float: left;
|
|
108
|
-
margin: 0 0 10px 10px
|
|
95
|
+
margin: 0 0 10px 10px;
|
|
109
96
|
}
|
|
110
|
-
|
|
111
97
|
.maplibregl-ctrl-bottom-right .maplibregl-ctrl {
|
|
112
98
|
float: right;
|
|
113
|
-
margin: 0 10px 10px 0
|
|
99
|
+
margin: 0 10px 10px 0;
|
|
114
100
|
}
|
|
115
|
-
|
|
116
101
|
.maplibregl-ctrl-group {
|
|
117
102
|
background: #fff;
|
|
118
|
-
border-radius: 4px
|
|
103
|
+
border-radius: 4px;
|
|
119
104
|
}
|
|
120
|
-
|
|
121
105
|
.maplibregl-ctrl-group:not(:empty) {
|
|
122
|
-
box-shadow: 0 0 0 2px rgba(0, 0, 0, .1)
|
|
106
|
+
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
|
|
123
107
|
}
|
|
124
|
-
|
|
125
|
-
@media (-ms-high-contrast:active) {
|
|
108
|
+
@media (-ms-high-contrast: active) {
|
|
126
109
|
.maplibregl-ctrl-group:not(:empty) {
|
|
127
|
-
|
|
110
|
+
box-shadow: 0 0 0 2px ButtonText;
|
|
128
111
|
}
|
|
129
112
|
}
|
|
130
|
-
|
|
131
113
|
.maplibregl-ctrl-group button {
|
|
132
114
|
background-color: transparent;
|
|
133
115
|
border: 0;
|
|
@@ -137,472 +119,414 @@
|
|
|
137
119
|
height: 29px;
|
|
138
120
|
outline: none;
|
|
139
121
|
padding: 0;
|
|
140
|
-
width: 29px
|
|
122
|
+
width: 29px;
|
|
141
123
|
}
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
border-top: 1px solid #ddd
|
|
124
|
+
.maplibregl-ctrl-group button + button {
|
|
125
|
+
border-top: 1px solid #ddd;
|
|
145
126
|
}
|
|
146
|
-
|
|
147
127
|
.maplibregl-ctrl button .maplibregl-ctrl-icon {
|
|
148
128
|
background-position: 50%;
|
|
149
129
|
background-repeat: no-repeat;
|
|
150
130
|
display: block;
|
|
151
131
|
height: 100%;
|
|
152
|
-
width: 100
|
|
132
|
+
width: 100%;
|
|
153
133
|
}
|
|
154
|
-
|
|
155
|
-
@media (-ms-high-contrast:active) {
|
|
134
|
+
@media (-ms-high-contrast: active) {
|
|
156
135
|
.maplibregl-ctrl-icon {
|
|
157
|
-
|
|
136
|
+
background-color: transparent;
|
|
158
137
|
}
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
border-top: 1px solid ButtonText
|
|
138
|
+
.maplibregl-ctrl-group button + button {
|
|
139
|
+
border-top: 1px solid ButtonText;
|
|
162
140
|
}
|
|
163
141
|
}
|
|
164
|
-
|
|
165
142
|
.maplibregl-ctrl button::-moz-focus-inner {
|
|
166
143
|
border: 0;
|
|
167
|
-
padding: 0
|
|
144
|
+
padding: 0;
|
|
168
145
|
}
|
|
169
|
-
|
|
170
146
|
.maplibregl-ctrl-attrib-button:focus,
|
|
171
147
|
.maplibregl-ctrl-group button:focus {
|
|
172
|
-
box-shadow: 0 0 2px 2px #0096ff
|
|
148
|
+
box-shadow: 0 0 2px 2px #0096ff;
|
|
173
149
|
}
|
|
174
|
-
|
|
175
150
|
.maplibregl-ctrl button:disabled {
|
|
176
|
-
cursor: not-allowed
|
|
151
|
+
cursor: not-allowed;
|
|
177
152
|
}
|
|
178
|
-
|
|
179
153
|
.maplibregl-ctrl button:disabled .maplibregl-ctrl-icon {
|
|
180
|
-
opacity: .25
|
|
154
|
+
opacity: 0.25;
|
|
181
155
|
}
|
|
182
|
-
|
|
183
156
|
.maplibregl-ctrl button:not(:disabled):hover {
|
|
184
|
-
background-color: rgb(0 0 0/5%)
|
|
157
|
+
background-color: rgb(0 0 0/5%);
|
|
185
158
|
}
|
|
186
|
-
|
|
187
159
|
.maplibregl-ctrl-group button:focus:focus-visible {
|
|
188
|
-
box-shadow: 0 0 2px 2px #0096ff
|
|
160
|
+
box-shadow: 0 0 2px 2px #0096ff;
|
|
189
161
|
}
|
|
190
|
-
|
|
191
162
|
.maplibregl-ctrl-group button:focus:not(:focus-visible) {
|
|
192
|
-
box-shadow: none
|
|
163
|
+
box-shadow: none;
|
|
193
164
|
}
|
|
194
|
-
|
|
195
165
|
.maplibregl-ctrl-group button:focus:first-child {
|
|
196
|
-
border-radius: 4px 4px 0 0
|
|
166
|
+
border-radius: 4px 4px 0 0;
|
|
197
167
|
}
|
|
198
|
-
|
|
199
168
|
.maplibregl-ctrl-group button:focus:last-child {
|
|
200
|
-
border-radius: 0 0 4px 4px
|
|
169
|
+
border-radius: 0 0 4px 4px;
|
|
201
170
|
}
|
|
202
|
-
|
|
203
171
|
.maplibregl-ctrl-group button:focus:only-child {
|
|
204
|
-
border-radius: inherit
|
|
172
|
+
border-radius: inherit;
|
|
205
173
|
}
|
|
206
|
-
|
|
207
174
|
.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
|
|
208
|
-
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19
|
|
175
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E");
|
|
209
176
|
}
|
|
210
|
-
|
|
211
177
|
.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon {
|
|
212
|
-
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.
|
|
178
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E");
|
|
213
179
|
}
|
|
214
|
-
|
|
215
|
-
@media (-ms-high-contrast:active) {
|
|
180
|
+
@media (-ms-high-contrast: active) {
|
|
216
181
|
.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
|
|
217
|
-
|
|
182
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E");
|
|
218
183
|
}
|
|
219
|
-
|
|
220
184
|
.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon {
|
|
221
|
-
|
|
185
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E");
|
|
222
186
|
}
|
|
223
187
|
}
|
|
224
|
-
|
|
225
|
-
@media (-ms-high-contrast:black-on-white) {
|
|
188
|
+
@media (-ms-high-contrast: black-on-white) {
|
|
226
189
|
.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
|
|
227
|
-
|
|
190
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E");
|
|
228
191
|
}
|
|
229
|
-
|
|
230
192
|
.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon {
|
|
231
|
-
|
|
193
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E");
|
|
232
194
|
}
|
|
233
195
|
}
|
|
234
|
-
|
|
235
196
|
.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon {
|
|
236
|
-
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-
|
|
197
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E");
|
|
237
198
|
}
|
|
238
|
-
|
|
239
199
|
.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon {
|
|
240
|
-
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-
|
|
200
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E");
|
|
241
201
|
}
|
|
242
|
-
|
|
243
|
-
@media (-ms-high-contrast:active) {
|
|
202
|
+
@media (-ms-high-contrast: active) {
|
|
244
203
|
.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon {
|
|
245
|
-
|
|
204
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E");
|
|
246
205
|
}
|
|
247
|
-
|
|
248
206
|
.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon {
|
|
249
|
-
|
|
207
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E");
|
|
250
208
|
}
|
|
251
209
|
}
|
|
252
|
-
|
|
253
|
-
@media (-ms-high-contrast:black-on-white) {
|
|
210
|
+
@media (-ms-high-contrast: black-on-white) {
|
|
254
211
|
.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon {
|
|
255
|
-
|
|
212
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E");
|
|
256
213
|
}
|
|
257
|
-
|
|
258
214
|
.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon {
|
|
259
|
-
|
|
215
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E");
|
|
260
216
|
}
|
|
261
217
|
}
|
|
262
|
-
|
|
263
218
|
.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon {
|
|
264
|
-
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='m10.5 14 4-8 4 8z'/%3E%3Cpath fill='%23ccc' d='m10.5 16 4 8 4-8z'/%3E%3C/svg%3E")
|
|
219
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='m10.5 14 4-8 4 8h-8z'/%3E%3Cpath fill='%23ccc' d='m10.5 16 4 8 4-8h-8z'/%3E%3C/svg%3E");
|
|
265
220
|
}
|
|
266
|
-
|
|
267
|
-
@media (-ms-high-contrast:active) {
|
|
221
|
+
@media (-ms-high-contrast: active) {
|
|
268
222
|
.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon {
|
|
269
|
-
|
|
223
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='m10.5 14 4-8 4 8h-8z'/%3E%3Cpath fill='%23999' d='m10.5 16 4 8 4-8h-8z'/%3E%3C/svg%3E");
|
|
270
224
|
}
|
|
271
225
|
}
|
|
272
|
-
|
|
273
|
-
@media (-ms-high-contrast:black-on-white) {
|
|
226
|
+
@media (-ms-high-contrast: black-on-white) {
|
|
274
227
|
.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon {
|
|
275
|
-
|
|
228
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='m10.5 14 4-8 4 8h-8z'/%3E%3Cpath fill='%23ccc' d='m10.5 16 4 8 4-8h-8z'/%3E%3C/svg%3E");
|
|
276
229
|
}
|
|
277
230
|
}
|
|
278
|
-
|
|
279
231
|
.maplibregl-ctrl button.maplibregl-ctrl-terrain .maplibregl-ctrl-icon {
|
|
280
|
-
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='%23333' viewBox='0 0 22 22'%3E%3Cpath d='m1.754 13.406 4.453-4.851 3.09 3.09 3.281 3.277.969-.969-3.309-3.312 3.844-4.121 6.148 6.886h1.082v-.855l-7.207-8.07-4.84 5.187L6.169 6.57l-5.48 5.965v.871ZM.688 16.844h20.625v1.375H.688Zm0 0'/%3E%3C/svg%3E")
|
|
232
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='%23333' viewBox='0 0 22 22'%3E%3Cpath d='m1.754 13.406 4.453-4.851 3.09 3.09 3.281 3.277.969-.969-3.309-3.312 3.844-4.121 6.148 6.886h1.082v-.855l-7.207-8.07-4.84 5.187L6.169 6.57l-5.48 5.965v.871ZM.688 16.844h20.625v1.375H.688Zm0 0'/%3E%3C/svg%3E");
|
|
281
233
|
}
|
|
282
|
-
|
|
283
234
|
.maplibregl-ctrl button.maplibregl-ctrl-terrain-enabled .maplibregl-ctrl-icon {
|
|
284
|
-
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='%2333b5e5' viewBox='0 0 22 22'%3E%3Cpath d='m1.754 13.406 4.453-4.851 3.09 3.09 3.281 3.277.969-.969-3.309-3.312 3.844-4.121 6.148 6.886h1.082v-.855l-7.207-8.07-4.84 5.187L6.169 6.57l-5.48 5.965v.871ZM.688 16.844h20.625v1.375H.688Zm0 0'/%3E%3C/svg%3E")
|
|
235
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='%2333b5e5' viewBox='0 0 22 22'%3E%3Cpath d='m1.754 13.406 4.453-4.851 3.09 3.09 3.281 3.277.969-.969-3.309-3.312 3.844-4.121 6.148 6.886h1.082v-.855l-7.207-8.07-4.84 5.187L6.169 6.57l-5.48 5.965v.871ZM.688 16.844h20.625v1.375H.688Zm0 0'/%3E%3C/svg%3E");
|
|
285
236
|
}
|
|
286
|
-
|
|
287
237
|
.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
|
|
288
|
-
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-
|
|
238
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E");
|
|
289
239
|
}
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
240
|
+
.maplibregl-ctrl
|
|
241
|
+
button.maplibregl-ctrl-geolocate:disabled
|
|
242
|
+
.maplibregl-ctrl-icon {
|
|
243
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23aaa' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Cpath fill='red' d='m14 5 1 1-9 9-1-1 9-9z'/%3E%3C/svg%3E");
|
|
293
244
|
}
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
245
|
+
.maplibregl-ctrl
|
|
246
|
+
button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active
|
|
247
|
+
.maplibregl-ctrl-icon {
|
|
248
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%2333b5e5' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E");
|
|
297
249
|
}
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
250
|
+
.maplibregl-ctrl
|
|
251
|
+
button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active-error
|
|
252
|
+
.maplibregl-ctrl-icon {
|
|
253
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23e58978' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E");
|
|
301
254
|
}
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
255
|
+
.maplibregl-ctrl
|
|
256
|
+
button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background
|
|
257
|
+
.maplibregl-ctrl-icon {
|
|
258
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%2333b5e5' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3C/svg%3E");
|
|
305
259
|
}
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
260
|
+
.maplibregl-ctrl
|
|
261
|
+
button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background-error
|
|
262
|
+
.maplibregl-ctrl-icon {
|
|
263
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23e54e33' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3C/svg%3E");
|
|
309
264
|
}
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
265
|
+
.maplibregl-ctrl
|
|
266
|
+
button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-waiting
|
|
267
|
+
.maplibregl-ctrl-icon {
|
|
268
|
+
animation: maplibregl-spin 2s linear infinite;
|
|
313
269
|
}
|
|
314
|
-
|
|
315
|
-
@media (-ms-high-contrast:active) {
|
|
270
|
+
@media (-ms-high-contrast: active) {
|
|
316
271
|
.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
|
|
317
|
-
|
|
272
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E");
|
|
318
273
|
}
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
274
|
+
.maplibregl-ctrl
|
|
275
|
+
button.maplibregl-ctrl-geolocate:disabled
|
|
276
|
+
.maplibregl-ctrl-icon {
|
|
277
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23999' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Cpath fill='red' d='m14 5 1 1-9 9-1-1 9-9z'/%3E%3C/svg%3E");
|
|
322
278
|
}
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
279
|
+
.maplibregl-ctrl
|
|
280
|
+
button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active
|
|
281
|
+
.maplibregl-ctrl-icon {
|
|
282
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%2333b5e5' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E");
|
|
326
283
|
}
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
284
|
+
.maplibregl-ctrl
|
|
285
|
+
button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active-error
|
|
286
|
+
.maplibregl-ctrl-icon {
|
|
287
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23e58978' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E");
|
|
330
288
|
}
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
289
|
+
.maplibregl-ctrl
|
|
290
|
+
button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background
|
|
291
|
+
.maplibregl-ctrl-icon {
|
|
292
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%2333b5e5' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3C/svg%3E");
|
|
334
293
|
}
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
294
|
+
.maplibregl-ctrl
|
|
295
|
+
button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background-error
|
|
296
|
+
.maplibregl-ctrl-icon {
|
|
297
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23e54e33' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3C/svg%3E");
|
|
338
298
|
}
|
|
339
299
|
}
|
|
340
|
-
|
|
341
|
-
@media (-ms-high-contrast:black-on-white) {
|
|
300
|
+
@media (-ms-high-contrast: black-on-white) {
|
|
342
301
|
.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
|
|
343
|
-
|
|
302
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E");
|
|
344
303
|
}
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
304
|
+
.maplibregl-ctrl
|
|
305
|
+
button.maplibregl-ctrl-geolocate:disabled
|
|
306
|
+
.maplibregl-ctrl-icon {
|
|
307
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23666' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Cpath fill='red' d='m14 5 1 1-9 9-1-1 9-9z'/%3E%3C/svg%3E");
|
|
348
308
|
}
|
|
349
309
|
}
|
|
350
|
-
|
|
351
310
|
@keyframes maplibregl-spin {
|
|
352
311
|
0% {
|
|
353
|
-
|
|
312
|
+
transform: rotate(0deg);
|
|
354
313
|
}
|
|
355
|
-
|
|
356
314
|
to {
|
|
357
|
-
|
|
315
|
+
transform: rotate(1turn);
|
|
358
316
|
}
|
|
359
317
|
}
|
|
360
|
-
|
|
361
318
|
a.maplibregl-ctrl-logo {
|
|
362
|
-
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='23' fill='none'%3E%3Cpath fill='%23000' fill-opacity='.4' fill-rule='evenodd' d='M17.408 16.796h-1.827l2.501-12.095h.198l3.324 6.533.988 2.19.988-2.19 3.258-6.533h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.929 5.644h-.098l-2.914-5.644-.757-1.71-.345 1.71zm1.958-3.42-.726 3.663a1.255 1.255 0 0 1-1.232 1.011h-1.827a1.255 1.255 0 0 1-1.229-1.509l2.501-12.095a1.255 1.255 0 0 1 1.23-1.001h.197a1.25 1.25 0 0 1 1.12.685l3.19 6.273 3.125-6.263a1.25 1.25 0 0 1 1.123-.695h.181a1.255 1.255 0 0 1 1.227.991l1.443 6.71a5 5 0 0 1 .314-.787l.009-.016a4.6 4.6 0 0 1 1.777-1.887c.782-.46 1.668-.667 2.611-.667a4.6 4.6 0 0 1 1.7.32l.306.134c.21-.16.474-.256.759-.256h1.694a1.255 1.255 0 0 1 1.212.925 1.255 1.255 0 0 1 1.212-.925h1.711c.284 0 .545.094.755.252.613-.3 1.312-.45 2.075-.45 1.356 0 2.557.445 3.482 1.4q.47.48.763 1.064V4.701a1.255 1.255 0 0 1 1.255-1.255h1.86A1.255 1.255 0 0 1 54.44 4.7v9.194h2.217c.19 0 .37.043.532.118v-4.77c0-.356.147-.678.385-.906a2.42 2.42 0 0 1-.682-1.71c0-.665.267-1.253.735-1.7a2.45 2.45 0 0 1 1.722-.674 2.43 2.43 0 0 1 1.705.675q.318.302.504.683V4.7a1.255 1.255 0 0 1 1.255-1.255h1.744A1.255 1.255 0 0 1 65.812 4.7v3.335a4.8 4.8 0 0 1 1.526-.246c.938 0 1.817.214 2.59.69a4.47 4.47 0 0 1 1.67 1.743v-.98a1.255 1.255 0 0 1 1.256-1.256h1.777c.233 0 .451.064.639.174a3.4 3.4 0 0 1 1.567-.372c.346 0 .861.02 1.285.232a1.25 1.25 0 0 1 .689 1.004 4.7 4.7 0 0 1 .853-.588c.795-.44 1.675-.647 2.61-.647 1.385 0 2.65.39 3.525 1.396.836.938 1.168 2.173 1.168 3.528q-.001.515-.056 1.051a1.255 1.255 0 0 1-.947 1.09l.408.952a1.255 1.255 0 0 1-.477 1.552c-.418.268-.92.463-1.458.612-.613.171-1.304.244-2.049.244-1.06 0-2.043-.207-2.886-.698l-.015-.008c-.798-.48-1.419-1.135-1.818-1.963l-.004-.008a5.8 5.8 0 0 1-.548-2.512q0-.429.053-.843a1.3 1.3 0 0 1-.333-.086l-.166-.004c-.223 0-.426.062-.643.228-.03.024-.142.139-.142.59v3.883a1.255 1.255 0 0 1-1.256 1.256h-1.777a1.255 1.255 0 0 1-1.256-1.256V15.69l-.032.057a4.8 4.8 0 0 1-1.86 1.833 5.04 5.04 0 0 1-2.484.634 4.5 4.5 0 0 1-1.935-.424 1.25 1.25 0 0 1-.764.258h-1.71a1.255 1.255 0 0 1-1.256-1.255V7.687a2.4 2.4 0 0 1-.428.625c.253.23.412.561.412.93v7.553a1.255 1.255 0 0 1-1.256 1.255h-1.843a1.25 1.25 0 0 1-.894-.373c-.228.23-.544.373-.894.373H51.32a1.255 1.255 0 0 1-1.256-1.255v-1.251l-.061.117a4.7 4.7 0 0 1-1.782 1.884 4.77 4.77 0 0 1-2.485.67 5.6 5.6 0 0 1-1.485-.188l.009 2.764a1.255 1.255 0 0 1-1.255 1.259h-1.729a1.255 1.255 0 0 1-1.255-1.255v-3.537a1.255 1.255 0 0 1-1.167.793h-1.679a1.25 1.25 0 0 1-.77-.263 4.5 4.5 0 0 1-1.945.429c-.885 0-1.724-.21-2.495-.632l-.017-.01a5 5 0 0 1-1.081-.836 1.255 1.255 0 0 1-1.254 1.312h-1.81a1.255 1.255 0 0 1-1.228-.99l-.782-3.625-2.044 3.939a1.25 1.25 0 0 1-1.115.676h-.098a1.25 1.25 0 0 1-1.116-.68l-2.061-3.994zM35.92 16.63l.207-.114.223-.15q.493-.356.735-.785l.061-.118.033 1.332h1.678V9.242h-1.694l-.033 1.267q-.133-.329-.526-.658l-.032-.028a3.2 3.2 0 0 0-.668-.428l-.27-.12a3.3 3.3 0 0 0-1.235-.23q-1.136-.001-1.974.493a3.36 3.36 0 0 0-1.3 1.382q-.445.89-.444 2.074 0 1.2.51 2.107a3.8 3.8 0 0 0 1.382 1.381 3.9 3.9 0 0 0 1.893.477q.795 0 1.455-.33zm-2.789-5.38q-.576.675-.575 1.762 0 1.102.559 1.794.576.675 1.645.675a2.25 2.25 0 0 0 .934-.19 2.2 2.2 0 0 0 .468-.29l.178-.161a2.2 2.2 0 0 0 .397-.561q.244-.5.244-1.15v-.115q0-.708-.296-1.267l-.043-.077a2.2 2.2 0 0 0-.633-.709l-.13-.086-.047-.028a2.1 2.1 0 0 0-1.073-.285q-1.052 0-1.629.692zm2.316 2.706c.163-.17.28-.407.28-.83v-.114c0-.292-.06-.508-.15-.68a.96.96 0 0 0-.353-.389.85.85 0 0 0-.464-.127c-.4 0-.56.114-.664.239l-.01.012c-.148.174-.275.45-.275.945 0 .506.122.801.27.99.097.11.266.224.68.224.303 0 .504-.09.687-.269zm7.545 1.705a2.6 2.6 0 0 0 .331.423q.319.33.755.548l.173.074q.65.255 1.49.255 1.02 0 1.844-.493a3.45 3.45 0 0 0 1.316-1.4q.493-.904.493-2.089 0-1.909-.988-2.913-.988-1.02-2.584-1.02-.898 0-1.575.347a3 3 0 0 0-.415.262l-.199.166a3.4 3.4 0 0 0-.64.82V9.242h-1.712v11.553h1.729l-.017-5.134zm.53-1.138q.206.29.48.5l.155.11.053.034q.51.296 1.119.297 1.07 0 1.645-.675.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.435 0-.835.16a2 2 0 0 0-.284.136 2 2 0 0 0-.363.254 2.2 2.2 0 0 0-.46.569l-.082.162a2.6 2.6 0 0 0-.213 1.072v.115q0 .707.296 1.267l.135.211zm.964-.818a1.1 1.1 0 0 0 .367.385.94.94 0 0 0 .476.118c.423 0 .59-.117.687-.23.159-.194.28-.478.28-.95 0-.53-.133-.8-.266-.952l-.021-.025c-.078-.094-.231-.221-.68-.221a1 1 0 0 0-.503.135l-.012.007a.86.86 0 0 0-.335.343c-.073.133-.132.324-.132.614v.115a1.4 1.4 0 0 0 .14.66zm15.7-6.222q.347-.346.346-.856a1.05 1.05 0 0 0-.345-.79 1.18 1.18 0 0 0-.84-.329q-.51 0-.855.33a1.05 1.05 0 0 0-.346.79q0 .51.346.855.345.346.856.346.51 0 .839-.346zm4.337 9.314.033-1.332q.191.403.59.747l.098.081a4 4 0 0 0 .316.224l.223.122a3.2 3.2 0 0 0 1.44.322 3.8 3.8 0 0 0 1.875-.477 3.5 3.5 0 0 0 1.382-1.366q.527-.89.526-2.09 0-1.184-.444-2.073a3.24 3.24 0 0 0-1.283-1.399q-.823-.51-1.942-.51a3.5 3.5 0 0 0-1.527.344l-.086.043-.165.09a3 3 0 0 0-.33.214q-.432.315-.656.707a2 2 0 0 0-.099.198l.082-1.283V4.701h-1.744v12.095zm.473-2.509a2.5 2.5 0 0 0 .566.7q.117.098.245.18l.144.08a2.1 2.1 0 0 0 .975.232q1.07 0 1.645-.675.576-.69.576-1.778 0-1.102-.576-1.777-.56-.691-1.645-.692a2.2 2.2 0 0 0-1.015.235q-.22.113-.415.282l-.15.142a2.1 2.1 0 0 0-.42.594q-.223.479-.223 1.1v.115q0 .705.293 1.26zm2.616-.293c.157-.191.28-.479.28-.967 0-.51-.13-.79-.276-.961l-.021-.026c-.082-.1-.232-.225-.67-.225a.87.87 0 0 0-.681.279l-.012.011c-.154.155-.274.38-.274.807v.115c0 .285.057.499.144.669a1.1 1.1 0 0 0 .367.405c.137.082.28.123.455.123.423 0 .59-.118.686-.23zm8.266-3.013q.345-.13.724-.14l.069-.002q.493 0 .642.099l.247-1.794q-.196-.099-.717-.099a2.3 2.3 0 0 0-.545.063 2 2 0 0 0-.411.148 2.2 2.2 0 0 0-.4.249 2.5 2.5 0 0 0-.485.499 2.7 2.7 0 0 0-.32.581l-.05.137v-1.48h-1.778v7.553h1.777v-3.884q0-.546.159-.943a1.5 1.5 0 0 1 .466-.636 2.5 2.5 0 0 1 .399-.253 2 2 0 0 1 .224-.099zm9.784 2.656.05-.922q0-1.743-.856-2.698-.838-.97-2.584-.97-1.119-.001-2.007.493a3.46 3.46 0 0 0-1.4 1.382q-.493.906-.493 2.106 0 1.07.428 1.975.428.89 1.332 1.432.906.526 2.255.526.973 0 1.668-.185l.044-.012.135-.04q.613-.184.984-.421l-.542-1.267q-.3.162-.642.274l-.297.087q-.51.131-1.3.131-.954 0-1.497-.444a1.6 1.6 0 0 1-.192-.193q-.366-.44-.512-1.234l-.004-.021zm-5.427-1.256-.003.022h3.752v-.138q-.011-.727-.288-1.118a1 1 0 0 0-.156-.176q-.46-.428-1.316-.428-.986 0-1.494.604-.379.45-.494 1.234zm-27.053 2.77V4.7h-1.86v12.095h5.333V15.15zm7.103-5.908v7.553h-1.843V9.242h1.843z'/%3E%3Cpath fill='%23fff' d='m19.63 11.151-.757-1.71-.345 1.71-1.12 5.644h-1.827L18.083 4.7h.197l3.325 6.533.988 2.19.988-2.19L26.839 4.7h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.93 5.644h-.098l-2.913-5.644zm14.836 5.81q-1.02 0-1.893-.478a3.8 3.8 0 0 1-1.381-1.382q-.51-.906-.51-2.106 0-1.185.444-2.074a3.36 3.36 0 0 1 1.3-1.382q.839-.494 1.974-.494a3.3 3.3 0 0 1 1.234.231 3.3 3.3 0 0 1 .97.575q.396.33.527.659l.033-1.267h1.694v7.553H37.18l-.033-1.332q-.279.593-1.02 1.053a3.17 3.17 0 0 1-1.662.444zm.296-1.482q.938 0 1.58-.642.642-.66.642-1.711v-.115q0-.708-.296-1.267a2.2 2.2 0 0 0-.807-.872 2.1 2.1 0 0 0-1.119-.313q-1.053 0-1.629.692-.575.675-.575 1.76 0 1.103.559 1.795.577.675 1.645.675zm6.521-6.237h1.711v1.4q.906-1.597 2.83-1.597 1.596 0 2.584 1.02.988 1.005.988 2.914 0 1.185-.493 2.09a3.46 3.46 0 0 1-1.316 1.399 3.5 3.5 0 0 1-1.844.493q-.954 0-1.662-.329a2.67 2.67 0 0 1-1.086-.97l.017 5.134h-1.728zm4.048 6.22q1.07 0 1.645-.674.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.592 0-1.12.296-.51.28-.822.823-.296.527-.296 1.234v.115q0 .708.296 1.267.313.543.823.855.51.296 1.119.297z'/%3E%3Cpath fill='%23e1e3e9' d='M51.325 4.7h1.86v10.45h3.473v1.646h-5.333zm7.12 4.542h1.843v7.553h-1.843zm.905-1.415a1.16 1.16 0 0 1-.856-.346 1.17 1.17 0 0 1-.346-.856 1.05 1.05 0 0 1 .346-.79q.346-.329.856-.329.494 0 .839.33a1.05 1.05 0 0 1 .345.79 1.16 1.16 0 0 1-.345.855q-.33.346-.84.346zm7.875 9.133a3.17 3.17 0 0 1-1.662-.444q-.723-.46-1.004-1.053l-.033 1.332h-1.71V4.701h1.743v4.657l-.082 1.283q.279-.658 1.086-1.119a3.5 3.5 0 0 1 1.778-.477q1.119 0 1.942.51a3.24 3.24 0 0 1 1.283 1.4q.445.888.444 2.072 0 1.201-.526 2.09a3.5 3.5 0 0 1-1.382 1.366 3.8 3.8 0 0 1-1.876.477zm-.296-1.481q1.069 0 1.645-.675.577-.69.577-1.778 0-1.102-.577-1.776-.56-.691-1.645-.692a2.12 2.12 0 0 0-1.58.659q-.642.641-.642 1.694v.115q0 .71.296 1.267a2.4 2.4 0 0 0 .807.872 2.1 2.1 0 0 0 1.119.313zm5.927-6.237h1.777v1.481q.263-.757.856-1.217a2.14 2.14 0 0 1 1.349-.46q.527 0 .724.098l-.247 1.794q-.149-.099-.642-.099-.774 0-1.416.494-.626.493-.626 1.58v3.883h-1.777V9.242zm9.534 7.718q-1.35 0-2.255-.526-.904-.543-1.332-1.432a4.6 4.6 0 0 1-.428-1.975q0-1.2.493-2.106a3.46 3.46 0 0 1 1.4-1.382q.889-.495 2.007-.494 1.744 0 2.584.97.855.956.856 2.7 0 .444-.05.92h-5.43q.18 1.005.708 1.45.542.443 1.497.443.79 0 1.3-.131a4 4 0 0 0 .938-.362l.542 1.267q-.411.263-1.119.46-.708.198-1.711.197zm1.596-4.558q.016-1.02-.444-1.432-.46-.428-1.316-.428-1.728 0-1.991 1.86z'/%3E%3Cpath d='M5.074 15.948a.484.657 0 0 0-.486.659v1.84a.484.657 0 0 0 .486.659h4.101a.484.657 0 0 0 .486-.659v-1.84a.484.657 0 0 0-.486-.659zm3.56 1.16H5.617v.838h3.017z' style='fill:%23fff;fill-rule:evenodd;stroke-width:1.03600001'/%3E%3Cg style='stroke-width:1.12603545'%3E%3Cpath d='M-9.408-1.416c-3.833-.025-7.056 2.912-7.08 6.615-.02 3.08 1.653 4.832 3.107 6.268.903.892 1.721 1.74 2.32 2.902l-.525-.004c-.543-.003-.992.304-1.24.639a1.87 1.87 0 0 0-.362 1.121l-.011 1.877c-.003.402.104.787.347 1.125.244.338.688.653 1.23.656l4.142.028c.542.003.99-.306 1.238-.641a1.87 1.87 0 0 0 .363-1.121l.012-1.875a1.87 1.87 0 0 0-.348-1.127c-.243-.338-.688-.653-1.23-.656l-.518-.004c.597-1.145 1.425-1.983 2.348-2.87 1.473-1.414 3.18-3.149 3.2-6.226-.016-3.59-2.923-6.684-6.993-6.707m-.006 1.1v.002c3.274.02 5.92 2.532 5.9 5.6-.017 2.706-1.39 4.026-2.863 5.44-1.034.994-2.118 2.033-2.814 3.633-.018.041-.052.055-.075.065q-.013.004-.02.01a.34.34 0 0 1-.226.084.34.34 0 0 1-.224-.086l-.092-.077c-.699-1.615-1.768-2.669-2.781-3.67-1.454-1.435-2.797-2.762-2.78-5.478.02-3.067 2.7-5.545 5.975-5.523m-.02 2.826c-1.62-.01-2.944 1.315-2.955 2.96-.01 1.646 1.295 2.988 2.916 2.999h.002c1.621.01 2.943-1.316 2.953-2.961.011-1.646-1.294-2.988-2.916-2.998m-.005 1.1c1.017.006 1.829.83 1.822 1.89s-.83 1.874-1.848 1.867c-1.018-.006-1.829-.83-1.822-1.89s.83-1.874 1.848-1.868m-2.155 11.857 4.14.025c.271.002.49.305.487.676l-.013 1.875c-.003.37-.224.67-.495.668l-4.14-.025c-.27-.002-.487-.306-.485-.676l.012-1.875c.003-.37.224-.67.494-.668' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:evenodd;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%23000;fill-opacity:.4;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-9.415-.316C-12.69-.338-15.37 2.14-15.39 5.207c-.017 2.716 1.326 4.041 2.78 5.477 1.013 1 2.081 2.055 2.78 3.67l.092.076a.34.34 0 0 0 .225.086.34.34 0 0 0 .227-.083l.019-.01c.022-.009.057-.024.074-.064.697-1.6 1.78-2.64 2.814-3.634 1.473-1.414 2.847-2.733 2.864-5.44.02-3.067-2.627-5.58-5.901-5.601m-.057 8.784c1.621.011 2.944-1.315 2.955-2.96.01-1.646-1.295-2.988-2.916-2.999-1.622-.01-2.945 1.315-2.955 2.96s1.295 2.989 2.916 3' style='clip-rule:evenodd;fill:%23e1e3e9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-11.594 15.465c-.27-.002-.492.297-.494.668l-.012 1.876c-.003.371.214.673.485.675l4.14.027c.271.002.492-.298.495-.668l.012-1.877c.003-.37-.215-.672-.485-.674z' style='clip-rule:evenodd;fill:%23fff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3C/g%3E%3C/svg%3E");
|
|
319
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='23' fill='none'%3E%3Cpath fill='%23000' fill-opacity='.4' fill-rule='evenodd' d='M17.408 16.796h-1.827l2.501-12.095h.198l3.324 6.533.988 2.19.988-2.19 3.258-6.533h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.929 5.644h-.098l-2.914-5.644-.757-1.71-.345 1.71zm1.958-3.42-.726 3.663a1.255 1.255 0 0 1-1.232 1.011h-1.827a1.255 1.255 0 0 1-1.229-1.509l2.501-12.095a1.255 1.255 0 0 1 1.23-1.001h.197a1.255 1.255 0 0 1 1.12.685l3.19 6.273 3.125-6.263a1.255 1.255 0 0 1 1.123-.695h.181a1.255 1.255 0 0 1 1.227.991l1.443 6.71a5.11 5.11 0 0 1 .314-.787l.009-.016a4.623 4.623 0 0 1 1.777-1.887c.782-.46 1.668-.667 2.611-.667a4.548 4.548 0 0 1 1.7.32l.306.134c.21-.16.474-.256.759-.256h1.694a1.255 1.255 0 0 1 1.212.925 1.255 1.255 0 0 1 1.212-.925h1.711c.284 0 .545.094.755.252.613-.3 1.312-.45 2.075-.45 1.356 0 2.557.445 3.482 1.4.314.319.566.676.763 1.064V4.701a1.255 1.255 0 0 1 1.255-1.255h1.86A1.255 1.255 0 0 1 54.44 4.7v9.194h2.217c.19 0 .37.043.532.118v-4.77c0-.356.147-.678.385-.906a2.416 2.416 0 0 1-.682-1.71c0-.665.267-1.253.735-1.7a2.448 2.448 0 0 1 1.722-.674 2.43 2.43 0 0 1 1.705.675c.211.2.381.43.504.683V4.7a1.255 1.255 0 0 1 1.255-1.255h1.744A1.255 1.255 0 0 1 65.812 4.7v3.335a4.76 4.76 0 0 1 1.526-.246c.938 0 1.817.214 2.59.69a4.47 4.47 0 0 1 1.67 1.743v-.98a1.255 1.255 0 0 1 1.256-1.256h1.777c.233 0 .451.064.639.174a3.407 3.407 0 0 1 1.567-.372c.346 0 .861.02 1.285.232a1.255 1.255 0 0 1 .689 1.004 4.73 4.73 0 0 1 .853-.588c.795-.44 1.675-.647 2.61-.647 1.385 0 2.65.39 3.525 1.396.836.938 1.168 2.173 1.168 3.528 0 .343-.02.694-.056 1.051a1.255 1.255 0 0 1-.947 1.09l.408.952a1.255 1.255 0 0 1-.477 1.552c-.418.268-.92.463-1.458.612-.613.171-1.304.244-2.049.244-1.06 0-2.043-.207-2.886-.698l-.015-.008c-.798-.48-1.419-1.135-1.818-1.963l-.004-.008a5.815 5.815 0 0 1-.548-2.512c0-.286.017-.567.053-.843a1.255 1.255 0 0 1-.333-.086l-.166-.004c-.223 0-.426.062-.643.228-.03.024-.142.139-.142.59v3.883a1.255 1.255 0 0 1-1.256 1.256h-1.777a1.255 1.255 0 0 1-1.256-1.256V15.69l-.032.057a4.778 4.778 0 0 1-1.86 1.833 5.04 5.04 0 0 1-2.484.634 4.47 4.47 0 0 1-1.935-.424 1.252 1.252 0 0 1-.764.258h-1.71a1.255 1.255 0 0 1-1.256-1.255V7.687a2.402 2.402 0 0 1-.428.625c.253.23.412.561.412.93v7.553a1.255 1.255 0 0 1-1.256 1.255h-1.843a1.25 1.25 0 0 1-.894-.373c-.228.23-.544.373-.894.373H51.32a1.255 1.255 0 0 1-1.256-1.255v-1.251l-.061.117a4.703 4.703 0 0 1-1.782 1.884 4.767 4.767 0 0 1-2.485.67 5.6 5.6 0 0 1-1.485-.188l.009 2.764a1.255 1.255 0 0 1-1.255 1.259h-1.729a1.255 1.255 0 0 1-1.255-1.255v-3.537a1.255 1.255 0 0 1-1.167.793h-1.679a1.25 1.25 0 0 1-.77-.263 4.47 4.47 0 0 1-1.945.429c-.885 0-1.724-.21-2.495-.632l-.017-.01a4.983 4.983 0 0 1-1.081-.836 1.255 1.255 0 0 1-1.254 1.312h-1.81a1.255 1.255 0 0 1-1.228-.99l-.782-3.625-2.044 3.939a1.255 1.255 0 0 1-1.115.676h-.098a1.255 1.255 0 0 1-1.116-.68l-2.061-3.994zM35.92 16.63l.207-.114.223-.15c.329-.237.574-.499.735-.785l.061-.118.033 1.332h1.678V9.242h-1.694l-.033 1.267c-.088-.22-.264-.438-.526-.658l-.032-.028a3.16 3.16 0 0 0-.668-.428l-.27-.12a3.293 3.293 0 0 0-1.235-.23c-.757 0-1.415.163-1.974.493a3.36 3.36 0 0 0-1.3 1.382c-.297.593-.444 1.284-.444 2.074 0 .8.17 1.503.51 2.107a3.795 3.795 0 0 0 1.382 1.381 3.883 3.883 0 0 0 1.893.477c.53 0 1.015-.11 1.455-.33zm-2.789-5.38c-.384.45-.575 1.038-.575 1.762 0 .735.186 1.332.559 1.794.384.45.933.675 1.645.675a2.25 2.25 0 0 0 .934-.19 2.17 2.17 0 0 0 .468-.29l.178-.161a2.163 2.163 0 0 0 .397-.561c.163-.333.244-.717.244-1.15v-.115c0-.472-.098-.894-.296-1.267l-.043-.077a2.211 2.211 0 0 0-.633-.709l-.13-.086-.047-.028a2.099 2.099 0 0 0-1.073-.285c-.702 0-1.244.231-1.629.692zm2.316 2.706c.163-.17.28-.407.28-.83v-.114c0-.292-.06-.508-.15-.68a.958.958 0 0 0-.353-.389.851.851 0 0 0-.464-.127c-.4 0-.56.114-.664.239l-.01.012c-.148.174-.275.45-.275.945 0 .506.122.801.27.99.097.11.266.224.68.224.303 0 .504-.09.687-.269zm7.545 1.705a2.626 2.626 0 0 0 .331.423c.213.22.464.402.755.548l.173.074c.433.17.93.255 1.49.255.68 0 1.295-.165 1.844-.493a3.447 3.447 0 0 0 1.316-1.4c.329-.603.493-1.299.493-2.089 0-1.273-.33-2.243-.988-2.913-.658-.68-1.52-1.02-2.584-1.02-.598 0-1.124.115-1.575.347a2.807 2.807 0 0 0-.415.262l-.199.166a3.35 3.35 0 0 0-.64.82V9.242h-1.712v11.553h1.729l-.017-5.134zm.53-1.138c.137.193.297.36.48.5l.155.11.053.034c.34.197.713.297 1.119.297.714 0 1.262-.225 1.645-.675.385-.46.576-1.048.576-1.762 0-.746-.192-1.338-.576-1.777-.372-.45-.92-.675-1.645-.675-.29 0-.569.053-.835.16a2.366 2.366 0 0 0-.284.136 1.99 1.99 0 0 0-.363.254 2.237 2.237 0 0 0-.46.569l-.082.162a2.56 2.56 0 0 0-.213 1.072v.115c0 .471.098.894.296 1.267l.135.211zm.964-.818a1.11 1.11 0 0 0 .367.385.937.937 0 0 0 .476.118c.423 0 .59-.117.687-.23.159-.194.28-.478.28-.95 0-.53-.133-.8-.266-.952l-.021-.025c-.078-.094-.231-.221-.68-.221a.995.995 0 0 0-.503.135l-.012.007a.859.859 0 0 0-.335.343c-.073.133-.132.324-.132.614v.115a1.43 1.43 0 0 0 .14.66zm15.7-6.222c.232-.23.346-.516.346-.856a1.053 1.053 0 0 0-.345-.79 1.175 1.175 0 0 0-.84-.329c-.34 0-.625.11-.855.33a1.053 1.053 0 0 0-.346.79c0 .34.115.625.346.855.23.23.516.346.856.346.34 0 .62-.115.839-.346zm4.337 9.314.033-1.332c.128.269.324.518.59.747l.098.081a3.727 3.727 0 0 0 .316.224l.223.122a3.21 3.21 0 0 0 1.44.322 3.785 3.785 0 0 0 1.875-.477 3.52 3.52 0 0 0 1.382-1.366c.352-.593.526-1.29.526-2.09 0-.79-.147-1.48-.444-2.073a3.235 3.235 0 0 0-1.283-1.399c-.549-.34-1.195-.51-1.942-.51a3.476 3.476 0 0 0-1.527.344l-.086.043-.165.09a3.412 3.412 0 0 0-.33.214c-.288.21-.507.446-.656.707a1.893 1.893 0 0 0-.099.198l.082-1.283V4.701h-1.744v12.095zm.473-2.509a2.482 2.482 0 0 0 .566.7c.078.065.159.125.245.18l.144.08a2.105 2.105 0 0 0 .975.232c.713 0 1.262-.225 1.645-.675.384-.46.576-1.053.576-1.778 0-.734-.192-1.327-.576-1.777-.373-.46-.921-.692-1.645-.692a2.18 2.18 0 0 0-1.015.235c-.147.075-.285.17-.415.282l-.15.142a2.086 2.086 0 0 0-.42.594c-.149.32-.223.685-.223 1.1v.115c0 .47.097.89.293 1.26zm2.616-.293c.157-.191.28-.479.28-.967 0-.51-.13-.79-.276-.961l-.021-.026c-.082-.1-.232-.225-.67-.225a.868.868 0 0 0-.681.279l-.012.011c-.154.155-.274.38-.274.807v.115c0 .285.057.499.144.669a1.13 1.13 0 0 0 .367.405c.137.082.28.123.455.123.423 0 .59-.118.686-.23zm8.266-3.013c.23-.087.472-.134.724-.14l.069-.002c.329 0 .542.033.642.099l.247-1.794c-.13-.066-.37-.099-.717-.099a2.3 2.3 0 0 0-.545.063 2.086 2.086 0 0 0-.411.148 2.18 2.18 0 0 0-.4.249 2.482 2.482 0 0 0-.485.499 2.659 2.659 0 0 0-.32.581l-.05.137v-1.48h-1.778v7.553h1.777v-3.884c0-.364.053-.678.159-.943a1.49 1.49 0 0 1 .466-.636 2.52 2.52 0 0 1 .399-.253 2.19 2.19 0 0 1 .224-.099zm9.784 2.656.05-.922c0-1.162-.285-2.062-.856-2.698-.559-.647-1.42-.97-2.584-.97-.746 0-1.415.163-2.007.493a3.462 3.462 0 0 0-1.4 1.382c-.329.604-.493 1.306-.493 2.106 0 .714.143 1.371.428 1.975.285.593.73 1.07 1.332 1.432.604.351 1.355.526 2.255.526.649 0 1.204-.062 1.668-.185l.044-.012.135-.04c.409-.122.736-.263.984-.421l-.542-1.267c-.2.108-.415.199-.642.274l-.297.087c-.34.088-.773.131-1.3.131-.636 0-1.135-.147-1.497-.444a1.573 1.573 0 0 1-.192-.193c-.244-.294-.415-.705-.512-1.234l-.004-.021h5.43zm-5.427-1.256-.003.022h3.752v-.138c-.007-.485-.104-.857-.288-1.118a1.056 1.056 0 0 0-.156-.176c-.307-.285-.746-.428-1.316-.428-.657 0-1.155.202-1.494.604-.253.3-.417.712-.494 1.234zm-27.053 2.77V4.7h-1.86v12.095h5.333V15.15zm7.103-5.908v7.553h-1.843V9.242h1.843z'/%3E%3Cpath fill='%23fff' d='m19.63 11.151-.757-1.71-.345 1.71-1.12 5.644h-1.827L18.083 4.7h.197l3.325 6.533.988 2.19.988-2.19L26.839 4.7h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.93 5.644h-.098l-2.913-5.644zm14.836 5.81c-.68 0-1.311-.16-1.893-.478a3.795 3.795 0 0 1-1.381-1.382c-.34-.604-.51-1.306-.51-2.106 0-.79.147-1.482.444-2.074a3.364 3.364 0 0 1 1.3-1.382c.559-.33 1.217-.494 1.974-.494a3.293 3.293 0 0 1 1.234.231 3.341 3.341 0 0 1 .97.575c.264.22.44.439.527.659l.033-1.267h1.694v7.553H37.18l-.033-1.332c-.186.395-.526.746-1.02 1.053a3.167 3.167 0 0 1-1.662.444zm.296-1.482c.626 0 1.152-.214 1.58-.642.428-.44.642-1.01.642-1.711v-.115c0-.472-.098-.894-.296-1.267a2.211 2.211 0 0 0-.807-.872 2.098 2.098 0 0 0-1.119-.313c-.702 0-1.245.231-1.629.692-.384.45-.575 1.037-.575 1.76 0 .736.186 1.333.559 1.795.384.45.933.675 1.645.675zm6.521-6.237h1.711v1.4c.604-1.065 1.547-1.597 2.83-1.597 1.064 0 1.926.34 2.584 1.02.659.67.988 1.641.988 2.914 0 .79-.164 1.487-.493 2.09a3.456 3.456 0 0 1-1.316 1.399 3.51 3.51 0 0 1-1.844.493c-.636 0-1.19-.11-1.662-.329a2.665 2.665 0 0 1-1.086-.97l.017 5.134h-1.728V9.242zm4.048 6.22c.714 0 1.262-.224 1.645-.674.385-.46.576-1.048.576-1.762 0-.746-.192-1.338-.576-1.777-.372-.45-.92-.675-1.645-.675-.395 0-.768.098-1.12.296-.34.187-.613.46-.822.823-.197.351-.296.763-.296 1.234v.115c0 .472.098.894.296 1.267.209.362.483.647.823.855.34.197.713.297 1.119.297z'/%3E%3Cpath fill='%23e1e3e9' d='M51.325 4.7h1.86v10.45h3.473v1.646h-5.333zm7.12 4.542h1.843v7.553h-1.843zm.905-1.415a1.159 1.159 0 0 1-.856-.346 1.165 1.165 0 0 1-.346-.856 1.053 1.053 0 0 1 .346-.79c.23-.219.516-.329.856-.329.329 0 .609.11.839.33a1.053 1.053 0 0 1 .345.79 1.159 1.159 0 0 1-.345.855c-.22.23-.5.346-.84.346zm7.875 9.133a3.167 3.167 0 0 1-1.662-.444c-.482-.307-.817-.658-1.004-1.053l-.033 1.332h-1.71V4.701h1.743v4.657l-.082 1.283c.186-.438.548-.812 1.086-1.119a3.486 3.486 0 0 1 1.778-.477c.746 0 1.393.17 1.942.51a3.235 3.235 0 0 1 1.283 1.4c.297.592.444 1.282.444 2.072 0 .8-.175 1.498-.526 2.09a3.52 3.52 0 0 1-1.382 1.366 3.785 3.785 0 0 1-1.876.477zm-.296-1.481c.713 0 1.26-.225 1.645-.675.384-.46.577-1.053.577-1.778 0-.734-.193-1.327-.577-1.776-.373-.46-.921-.692-1.645-.692a2.115 2.115 0 0 0-1.58.659c-.428.428-.642.992-.642 1.694v.115c0 .473.098.895.296 1.267a2.385 2.385 0 0 0 .807.872 2.1 2.1 0 0 0 1.119.313zm5.927-6.237h1.777v1.481c.176-.505.46-.91.856-1.217a2.14 2.14 0 0 1 1.349-.46c.351 0 .593.032.724.098l-.247 1.794c-.099-.066-.313-.099-.642-.099-.516 0-.988.164-1.416.494-.417.329-.626.855-.626 1.58v3.883h-1.777V9.242zm9.534 7.718c-.9 0-1.651-.175-2.255-.526-.603-.362-1.047-.84-1.332-1.432a4.567 4.567 0 0 1-.428-1.975c0-.8.164-1.502.493-2.106a3.462 3.462 0 0 1 1.4-1.382c.592-.33 1.262-.494 2.007-.494 1.163 0 2.024.324 2.584.97.57.637.856 1.537.856 2.7 0 .296-.017.603-.05.92h-5.43c.12.67.356 1.153.708 1.45.362.296.86.443 1.497.443.526 0 .96-.044 1.3-.131a4.123 4.123 0 0 0 .938-.362l.542 1.267c-.274.175-.647.329-1.119.46-.472.132-1.042.197-1.711.197zm1.596-4.558c.01-.68-.137-1.158-.444-1.432-.307-.285-.746-.428-1.316-.428-1.152 0-1.815.62-1.991 1.86h3.752z'/%3E%3Cg fill-rule='evenodd' stroke-width='1.036'%3E%3Cpath fill='%23000' fill-opacity='.4' d='m8.166 16.146-.002.002a1.54 1.54 0 0 1-2.009 0l-.002-.002-.043-.034-.002-.002-.199-.162H4.377a.657.657 0 0 0-.659.659v1.84a.657.657 0 0 0 .659.659h5.565a.657.657 0 0 0 .659-.659v-1.84a.657.657 0 0 0-.659-.659H8.411l-.202.164zm-1.121-.905a.29.29 0 0 0 .113.023.286.286 0 0 0 .189-.07l.077-.063c.634-.508 4.672-3.743 4.672-7.575 0-2.55-2.215-4.625-4.938-4.625S2.221 5.006 2.221 7.556c0 3.225 2.86 6.027 4.144 7.137h.004l.04.038.484.4.077.063a.628.628 0 0 0 .074.047zm-2.52-.548a16.898 16.898 0 0 1-1.183-1.315C2.187 11.942.967 9.897.967 7.555c0-3.319 2.855-5.88 6.192-5.88 3.338 0 6.193 2.561 6.193 5.881 0 2.34-1.22 4.387-2.376 5.822a16.898 16.898 0 0 1-1.182 1.315h.15a1.912 1.912 0 0 1 1.914 1.914v1.84a1.912 1.912 0 0 1-1.914 1.914H4.377a1.912 1.912 0 0 1-1.914-1.914v-1.84a1.912 1.912 0 0 1 1.914-1.914zm3.82-6.935c0 .692-.55 1.222-1.187 1.222s-1.185-.529-1.185-1.222.548-1.222 1.185-1.222c.638 0 1.186.529 1.186 1.222zm-1.186 2.477c1.348 0 2.442-1.11 2.442-2.478S8.507 5.28 7.159 5.28 4.72 6.39 4.72 7.758s1.092 2.477 2.44 2.477zm2.048 7.71H5.114v-.838h4.093z'/%3E%3Cpath fill='%23e1e3e9' d='M2.222 7.555c0-2.55 2.214-4.625 4.937-4.625 2.723 0 4.938 2.075 4.938 4.625 0 3.832-4.038 7.068-4.672 7.575l-.077.063a.286.286 0 0 1-.189.07.286.286 0 0 1-.188-.07l-.077-.063c-.634-.507-4.672-3.743-4.672-7.575zm4.937 2.68c1.348 0 2.442-1.11 2.442-2.478S8.507 5.28 7.159 5.28 4.72 6.39 4.72 7.758s1.092 2.477 2.44 2.477z'/%3E%3Cpath fill='%23fff' d='M4.377 15.948a.657.657 0 0 0-.659.659v1.84a.657.657 0 0 0 .659.659h5.565a.657.657 0 0 0 .659-.659v-1.84a.657.657 0 0 0-.659-.659zm4.83 1.16H5.114v.838h4.093z'/%3E%3C/g%3E%3C/svg%3E");
|
|
363
320
|
background-repeat: no-repeat;
|
|
364
321
|
cursor: pointer;
|
|
365
322
|
display: block;
|
|
366
323
|
height: 23px;
|
|
367
324
|
margin: 0 0 -4px -4px;
|
|
368
325
|
overflow: hidden;
|
|
369
|
-
width: 88px
|
|
326
|
+
width: 88px;
|
|
370
327
|
}
|
|
371
|
-
|
|
372
328
|
a.maplibregl-ctrl-logo.maplibregl-compact {
|
|
373
|
-
width: 14px
|
|
329
|
+
width: 14px;
|
|
374
330
|
}
|
|
375
|
-
|
|
376
|
-
@media (-ms-high-contrast:active) {
|
|
331
|
+
@media (-ms-high-contrast: active) {
|
|
377
332
|
a.maplibregl-ctrl-logo {
|
|
378
|
-
|
|
379
|
-
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='23' fill='none'%3E%3Cpath fill='%23000' fill-opacity='.4' fill-rule='evenodd' d='M17.408 16.796h-1.827l2.501-12.095h.198l3.324 6.533.988 2.19.988-2.19 3.258-6.533h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.929 5.644h-.098l-2.914-5.644-.757-1.71-.345 1.71zm1.958-3.42-.726 3.663a1.255 1.255 0 0 1-1.232 1.011h-1.827a1.255 1.255 0 0 1-1.229-1.509l2.501-12.095a1.255 1.255 0 0 1 1.23-1.001h.197a1.25 1.25 0 0 1 1.12.685l3.19 6.273 3.125-6.263a1.25 1.25 0 0 1 1.123-.695h.181a1.255 1.255 0 0 1 1.227.991l1.443 6.71a5 5 0 0 1 .314-.787l.009-.016a4.6 4.6 0 0 1 1.777-1.887c.782-.46 1.668-.667 2.611-.667a4.6 4.6 0 0 1 1.7.32l.306.134c.21-.16.474-.256.759-.256h1.694a1.255 1.255 0 0 1 1.212.925 1.255 1.255 0 0 1 1.212-.925h1.711c.284 0 .545.094.755.252.613-.3 1.312-.45 2.075-.45 1.356 0 2.557.445 3.482 1.4q.47.48.763 1.064V4.701a1.255 1.255 0 0 1 1.255-1.255h1.86A1.255 1.255 0 0 1 54.44 4.7v9.194h2.217c.19 0 .37.043.532.118v-4.77c0-.356.147-.678.385-.906a2.42 2.42 0 0 1-.682-1.71c0-.665.267-1.253.735-1.7a2.45 2.45 0 0 1 1.722-.674 2.43 2.43 0 0 1 1.705.675q.318.302.504.683V4.7a1.255 1.255 0 0 1 1.255-1.255h1.744A1.255 1.255 0 0 1 65.812 4.7v3.335a4.8 4.8 0 0 1 1.526-.246c.938 0 1.817.214 2.59.69a4.47 4.47 0 0 1 1.67 1.743v-.98a1.255 1.255 0 0 1 1.256-1.256h1.777c.233 0 .451.064.639.174a3.4 3.4 0 0 1 1.567-.372c.346 0 .861.02 1.285.232a1.25 1.25 0 0 1 .689 1.004 4.7 4.7 0 0 1 .853-.588c.795-.44 1.675-.647 2.61-.647 1.385 0 2.65.39 3.525 1.396.836.938 1.168 2.173 1.168 3.528q-.001.515-.056 1.051a1.255 1.255 0 0 1-.947 1.09l.408.952a1.255 1.255 0 0 1-.477 1.552c-.418.268-.92.463-1.458.612-.613.171-1.304.244-2.049.244-1.06 0-2.043-.207-2.886-.698l-.015-.008c-.798-.48-1.419-1.135-1.818-1.963l-.004-.008a5.8 5.8 0 0 1-.548-2.512q0-.429.053-.843a1.3 1.3 0 0 1-.333-.086l-.166-.004c-.223 0-.426.062-.643.228-.03.024-.142.139-.142.59v3.883a1.255 1.255 0 0 1-1.256 1.256h-1.777a1.255 1.255 0 0 1-1.256-1.256V15.69l-.032.057a4.8 4.8 0 0 1-1.86 1.833 5.04 5.04 0 0 1-2.484.634 4.5 4.5 0 0 1-1.935-.424 1.25 1.25 0 0 1-.764.258h-1.71a1.255 1.255 0 0 1-1.256-1.255V7.687a2.4 2.4 0 0 1-.428.625c.253.23.412.561.412.93v7.553a1.255 1.255 0 0 1-1.256 1.255h-1.843a1.25 1.25 0 0 1-.894-.373c-.228.23-.544.373-.894.373H51.32a1.255 1.255 0 0 1-1.256-1.255v-1.251l-.061.117a4.7 4.7 0 0 1-1.782 1.884 4.77 4.77 0 0 1-2.485.67 5.6 5.6 0 0 1-1.485-.188l.009 2.764a1.255 1.255 0 0 1-1.255 1.259h-1.729a1.255 1.255 0 0 1-1.255-1.255v-3.537a1.255 1.255 0 0 1-1.167.793h-1.679a1.25 1.25 0 0 1-.77-.263 4.5 4.5 0 0 1-1.945.429c-.885 0-1.724-.21-2.495-.632l-.017-.01a5 5 0 0 1-1.081-.836 1.255 1.255 0 0 1-1.254 1.312h-1.81a1.255 1.255 0 0 1-1.228-.99l-.782-3.625-2.044 3.939a1.25 1.25 0 0 1-1.115.676h-.098a1.25 1.25 0 0 1-1.116-.68l-2.061-3.994zM35.92 16.63l.207-.114.223-.15q.493-.356.735-.785l.061-.118.033 1.332h1.678V9.242h-1.694l-.033 1.267q-.133-.329-.526-.658l-.032-.028a3.2 3.2 0 0 0-.668-.428l-.27-.12a3.3 3.3 0 0 0-1.235-.23q-1.136-.001-1.974.493a3.36 3.36 0 0 0-1.3 1.382q-.445.89-.444 2.074 0 1.2.51 2.107a3.8 3.8 0 0 0 1.382 1.381 3.9 3.9 0 0 0 1.893.477q.795 0 1.455-.33zm-2.789-5.38q-.576.675-.575 1.762 0 1.102.559 1.794.576.675 1.645.675a2.25 2.25 0 0 0 .934-.19 2.2 2.2 0 0 0 .468-.29l.178-.161a2.2 2.2 0 0 0 .397-.561q.244-.5.244-1.15v-.115q0-.708-.296-1.267l-.043-.077a2.2 2.2 0 0 0-.633-.709l-.13-.086-.047-.028a2.1 2.1 0 0 0-1.073-.285q-1.052 0-1.629.692zm2.316 2.706c.163-.17.28-.407.28-.83v-.114c0-.292-.06-.508-.15-.68a.96.96 0 0 0-.353-.389.85.85 0 0 0-.464-.127c-.4 0-.56.114-.664.239l-.01.012c-.148.174-.275.45-.275.945 0 .506.122.801.27.99.097.11.266.224.68.224.303 0 .504-.09.687-.269zm7.545 1.705a2.6 2.6 0 0 0 .331.423q.319.33.755.548l.173.074q.65.255 1.49.255 1.02 0 1.844-.493a3.45 3.45 0 0 0 1.316-1.4q.493-.904.493-2.089 0-1.909-.988-2.913-.988-1.02-2.584-1.02-.898 0-1.575.347a3 3 0 0 0-.415.262l-.199.166a3.4 3.4 0 0 0-.64.82V9.242h-1.712v11.553h1.729l-.017-5.134zm.53-1.138q.206.29.48.5l.155.11.053.034q.51.296 1.119.297 1.07 0 1.645-.675.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.435 0-.835.16a2 2 0 0 0-.284.136 2 2 0 0 0-.363.254 2.2 2.2 0 0 0-.46.569l-.082.162a2.6 2.6 0 0 0-.213 1.072v.115q0 .707.296 1.267l.135.211zm.964-.818a1.1 1.1 0 0 0 .367.385.94.94 0 0 0 .476.118c.423 0 .59-.117.687-.23.159-.194.28-.478.28-.95 0-.53-.133-.8-.266-.952l-.021-.025c-.078-.094-.231-.221-.68-.221a1 1 0 0 0-.503.135l-.012.007a.86.86 0 0 0-.335.343c-.073.133-.132.324-.132.614v.115a1.4 1.4 0 0 0 .14.66zm15.7-6.222q.347-.346.346-.856a1.05 1.05 0 0 0-.345-.79 1.18 1.18 0 0 0-.84-.329q-.51 0-.855.33a1.05 1.05 0 0 0-.346.79q0 .51.346.855.345.346.856.346.51 0 .839-.346zm4.337 9.314.033-1.332q.191.403.59.747l.098.081a4 4 0 0 0 .316.224l.223.122a3.2 3.2 0 0 0 1.44.322 3.8 3.8 0 0 0 1.875-.477 3.5 3.5 0 0 0 1.382-1.366q.527-.89.526-2.09 0-1.184-.444-2.073a3.24 3.24 0 0 0-1.283-1.399q-.823-.51-1.942-.51a3.5 3.5 0 0 0-1.527.344l-.086.043-.165.09a3 3 0 0 0-.33.214q-.432.315-.656.707a2 2 0 0 0-.099.198l.082-1.283V4.701h-1.744v12.095zm.473-2.509a2.5 2.5 0 0 0 .566.7q.117.098.245.18l.144.08a2.1 2.1 0 0 0 .975.232q1.07 0 1.645-.675.576-.69.576-1.778 0-1.102-.576-1.777-.56-.691-1.645-.692a2.2 2.2 0 0 0-1.015.235q-.22.113-.415.282l-.15.142a2.1 2.1 0 0 0-.42.594q-.223.479-.223 1.1v.115q0 .705.293 1.26zm2.616-.293c.157-.191.28-.479.28-.967 0-.51-.13-.79-.276-.961l-.021-.026c-.082-.1-.232-.225-.67-.225a.87.87 0 0 0-.681.279l-.012.011c-.154.155-.274.38-.274.807v.115c0 .285.057.499.144.669a1.1 1.1 0 0 0 .367.405c.137.082.28.123.455.123.423 0 .59-.118.686-.23zm8.266-3.013q.345-.13.724-.14l.069-.002q.493 0 .642.099l.247-1.794q-.196-.099-.717-.099a2.3 2.3 0 0 0-.545.063 2 2 0 0 0-.411.148 2.2 2.2 0 0 0-.4.249 2.5 2.5 0 0 0-.485.499 2.7 2.7 0 0 0-.32.581l-.05.137v-1.48h-1.778v7.553h1.777v-3.884q0-.546.159-.943a1.5 1.5 0 0 1 .466-.636 2.5 2.5 0 0 1 .399-.253 2 2 0 0 1 .224-.099zm9.784 2.656.05-.922q0-1.743-.856-2.698-.838-.97-2.584-.97-1.119-.001-2.007.493a3.46 3.46 0 0 0-1.4 1.382q-.493.906-.493 2.106 0 1.07.428 1.975.428.89 1.332 1.432.906.526 2.255.526.973 0 1.668-.185l.044-.012.135-.04q.613-.184.984-.421l-.542-1.267q-.3.162-.642.274l-.297.087q-.51.131-1.3.131-.954 0-1.497-.444a1.6 1.6 0 0 1-.192-.193q-.366-.44-.512-1.234l-.004-.021zm-5.427-1.256-.003.022h3.752v-.138q-.011-.727-.288-1.118a1 1 0 0 0-.156-.176q-.46-.428-1.316-.428-.986 0-1.494.604-.379.45-.494 1.234zm-27.053 2.77V4.7h-1.86v12.095h5.333V15.15zm7.103-5.908v7.553h-1.843V9.242h1.843z'/%3E%3Cpath fill='%23fff' d='m19.63 11.151-.757-1.71-.345 1.71-1.12 5.644h-1.827L18.083 4.7h.197l3.325 6.533.988 2.19.988-2.19L26.839 4.7h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.93 5.644h-.098l-2.913-5.644zm14.836 5.81q-1.02 0-1.893-.478a3.8 3.8 0 0 1-1.381-1.382q-.51-.906-.51-2.106 0-1.185.444-2.074a3.36 3.36 0 0 1 1.3-1.382q.839-.494 1.974-.494a3.3 3.3 0 0 1 1.234.231 3.3 3.3 0 0 1 .97.575q.396.33.527.659l.033-1.267h1.694v7.553H37.18l-.033-1.332q-.279.593-1.02 1.053a3.17 3.17 0 0 1-1.662.444zm.296-1.482q.938 0 1.58-.642.642-.66.642-1.711v-.115q0-.708-.296-1.267a2.2 2.2 0 0 0-.807-.872 2.1 2.1 0 0 0-1.119-.313q-1.053 0-1.629.692-.575.675-.575 1.76 0 1.103.559 1.795.577.675 1.645.675zm6.521-6.237h1.711v1.4q.906-1.597 2.83-1.597 1.596 0 2.584 1.02.988 1.005.988 2.914 0 1.185-.493 2.09a3.46 3.46 0 0 1-1.316 1.399 3.5 3.5 0 0 1-1.844.493q-.954 0-1.662-.329a2.67 2.67 0 0 1-1.086-.97l.017 5.134h-1.728zm4.048 6.22q1.07 0 1.645-.674.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.592 0-1.12.296-.51.28-.822.823-.296.527-.296 1.234v.115q0 .708.296 1.267.313.543.823.855.51.296 1.119.297z'/%3E%3Cpath fill='%23e1e3e9' d='M51.325 4.7h1.86v10.45h3.473v1.646h-5.333zm7.12 4.542h1.843v7.553h-1.843zm.905-1.415a1.16 1.16 0 0 1-.856-.346 1.17 1.17 0 0 1-.346-.856 1.05 1.05 0 0 1 .346-.79q.346-.329.856-.329.494 0 .839.33a1.05 1.05 0 0 1 .345.79 1.16 1.16 0 0 1-.345.855q-.33.346-.84.346zm7.875 9.133a3.17 3.17 0 0 1-1.662-.444q-.723-.46-1.004-1.053l-.033 1.332h-1.71V4.701h1.743v4.657l-.082 1.283q.279-.658 1.086-1.119a3.5 3.5 0 0 1 1.778-.477q1.119 0 1.942.51a3.24 3.24 0 0 1 1.283 1.4q.445.888.444 2.072 0 1.201-.526 2.09a3.5 3.5 0 0 1-1.382 1.366 3.8 3.8 0 0 1-1.876.477zm-.296-1.481q1.069 0 1.645-.675.577-.69.577-1.778 0-1.102-.577-1.776-.56-.691-1.645-.692a2.12 2.12 0 0 0-1.58.659q-.642.641-.642 1.694v.115q0 .71.296 1.267a2.4 2.4 0 0 0 .807.872 2.1 2.1 0 0 0 1.119.313zm5.927-6.237h1.777v1.481q.263-.757.856-1.217a2.14 2.14 0 0 1 1.349-.46q.527 0 .724.098l-.247 1.794q-.149-.099-.642-.099-.774 0-1.416.494-.626.493-.626 1.58v3.883h-1.777V9.242zm9.534 7.718q-1.35 0-2.255-.526-.904-.543-1.332-1.432a4.6 4.6 0 0 1-.428-1.975q0-1.2.493-2.106a3.46 3.46 0 0 1 1.4-1.382q.889-.495 2.007-.494 1.744 0 2.584.97.855.956.856 2.7 0 .444-.05.92h-5.43q.18 1.005.708 1.45.542.443 1.497.443.79 0 1.3-.131a4 4 0 0 0 .938-.362l.542 1.267q-.411.263-1.119.46-.708.198-1.711.197zm1.596-4.558q.016-1.02-.444-1.432-.46-.428-1.316-.428-1.728 0-1.991 1.86z'/%3E%3Cpath d='M5.074 15.948a.484.657 0 0 0-.486.659v1.84a.484.657 0 0 0 .486.659h4.101a.484.657 0 0 0 .486-.659v-1.84a.484.657 0 0 0-.486-.659zm3.56 1.16H5.617v.838h3.017z' style='fill:%23fff;fill-rule:evenodd;stroke-width:1.03600001'/%3E%3Cg style='stroke-width:1.12603545'%3E%3Cpath d='M-9.408-1.416c-3.833-.025-7.056 2.912-7.08 6.615-.02 3.08 1.653 4.832 3.107 6.268.903.892 1.721 1.74 2.32 2.902l-.525-.004c-.543-.003-.992.304-1.24.639a1.87 1.87 0 0 0-.362 1.121l-.011 1.877c-.003.402.104.787.347 1.125.244.338.688.653 1.23.656l4.142.028c.542.003.99-.306 1.238-.641a1.87 1.87 0 0 0 .363-1.121l.012-1.875a1.87 1.87 0 0 0-.348-1.127c-.243-.338-.688-.653-1.23-.656l-.518-.004c.597-1.145 1.425-1.983 2.348-2.87 1.473-1.414 3.18-3.149 3.2-6.226-.016-3.59-2.923-6.684-6.993-6.707m-.006 1.1v.002c3.274.02 5.92 2.532 5.9 5.6-.017 2.706-1.39 4.026-2.863 5.44-1.034.994-2.118 2.033-2.814 3.633-.018.041-.052.055-.075.065q-.013.004-.02.01a.34.34 0 0 1-.226.084.34.34 0 0 1-.224-.086l-.092-.077c-.699-1.615-1.768-2.669-2.781-3.67-1.454-1.435-2.797-2.762-2.78-5.478.02-3.067 2.7-5.545 5.975-5.523m-.02 2.826c-1.62-.01-2.944 1.315-2.955 2.96-.01 1.646 1.295 2.988 2.916 2.999h.002c1.621.01 2.943-1.316 2.953-2.961.011-1.646-1.294-2.988-2.916-2.998m-.005 1.1c1.017.006 1.829.83 1.822 1.89s-.83 1.874-1.848 1.867c-1.018-.006-1.829-.83-1.822-1.89s.83-1.874 1.848-1.868m-2.155 11.857 4.14.025c.271.002.49.305.487.676l-.013 1.875c-.003.37-.224.67-.495.668l-4.14-.025c-.27-.002-.487-.306-.485-.676l.012-1.875c.003-.37.224-.67.494-.668' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:evenodd;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%23000;fill-opacity:.4;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-9.415-.316C-12.69-.338-15.37 2.14-15.39 5.207c-.017 2.716 1.326 4.041 2.78 5.477 1.013 1 2.081 2.055 2.78 3.67l.092.076a.34.34 0 0 0 .225.086.34.34 0 0 0 .227-.083l.019-.01c.022-.009.057-.024.074-.064.697-1.6 1.78-2.64 2.814-3.634 1.473-1.414 2.847-2.733 2.864-5.44.02-3.067-2.627-5.58-5.901-5.601m-.057 8.784c1.621.011 2.944-1.315 2.955-2.96.01-1.646-1.295-2.988-2.916-2.999-1.622-.01-2.945 1.315-2.955 2.96s1.295 2.989 2.916 3' style='clip-rule:evenodd;fill:%23e1e3e9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-11.594 15.465c-.27-.002-.492.297-.494.668l-.012 1.876c-.003.371.214.673.485.675l4.14.027c.271.002.492-.298.495-.668l.012-1.877c.003-.37-.215-.672-.485-.674z' style='clip-rule:evenodd;fill:%23fff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3C/g%3E%3C/svg%3E")
|
|
333
|
+
background-color: transparent;
|
|
334
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='23' fill='none'%3E%3Cpath fill='%23000' fill-opacity='.4' fill-rule='evenodd' d='M17.408 16.796h-1.827l2.501-12.095h.198l3.324 6.533.988 2.19.988-2.19 3.258-6.533h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.929 5.644h-.098l-2.914-5.644-.757-1.71-.345 1.71zm1.958-3.42-.726 3.663a1.255 1.255 0 0 1-1.232 1.011h-1.827a1.255 1.255 0 0 1-1.229-1.509l2.501-12.095a1.255 1.255 0 0 1 1.23-1.001h.197a1.255 1.255 0 0 1 1.12.685l3.19 6.273 3.125-6.263a1.255 1.255 0 0 1 1.123-.695h.181a1.255 1.255 0 0 1 1.227.991l1.443 6.71a5.11 5.11 0 0 1 .314-.787l.009-.016a4.623 4.623 0 0 1 1.777-1.887c.782-.46 1.668-.667 2.611-.667a4.548 4.548 0 0 1 1.7.32l.306.134c.21-.16.474-.256.759-.256h1.694a1.255 1.255 0 0 1 1.212.925 1.255 1.255 0 0 1 1.212-.925h1.711c.284 0 .545.094.755.252.613-.3 1.312-.45 2.075-.45 1.356 0 2.557.445 3.482 1.4.314.319.566.676.763 1.064V4.701a1.255 1.255 0 0 1 1.255-1.255h1.86A1.255 1.255 0 0 1 54.44 4.7v9.194h2.217c.19 0 .37.043.532.118v-4.77c0-.356.147-.678.385-.906a2.416 2.416 0 0 1-.682-1.71c0-.665.267-1.253.735-1.7a2.448 2.448 0 0 1 1.722-.674 2.43 2.43 0 0 1 1.705.675c.211.2.381.43.504.683V4.7a1.255 1.255 0 0 1 1.255-1.255h1.744A1.255 1.255 0 0 1 65.812 4.7v3.335a4.76 4.76 0 0 1 1.526-.246c.938 0 1.817.214 2.59.69a4.47 4.47 0 0 1 1.67 1.743v-.98a1.255 1.255 0 0 1 1.256-1.256h1.777c.233 0 .451.064.639.174a3.407 3.407 0 0 1 1.567-.372c.346 0 .861.02 1.285.232a1.255 1.255 0 0 1 .689 1.004 4.73 4.73 0 0 1 .853-.588c.795-.44 1.675-.647 2.61-.647 1.385 0 2.65.39 3.525 1.396.836.938 1.168 2.173 1.168 3.528 0 .343-.02.694-.056 1.051a1.255 1.255 0 0 1-.947 1.09l.408.952a1.255 1.255 0 0 1-.477 1.552c-.418.268-.92.463-1.458.612-.613.171-1.304.244-2.049.244-1.06 0-2.043-.207-2.886-.698l-.015-.008c-.798-.48-1.419-1.135-1.818-1.963l-.004-.008a5.815 5.815 0 0 1-.548-2.512c0-.286.017-.567.053-.843a1.255 1.255 0 0 1-.333-.086l-.166-.004c-.223 0-.426.062-.643.228-.03.024-.142.139-.142.59v3.883a1.255 1.255 0 0 1-1.256 1.256h-1.777a1.255 1.255 0 0 1-1.256-1.256V15.69l-.032.057a4.778 4.778 0 0 1-1.86 1.833 5.04 5.04 0 0 1-2.484.634 4.47 4.47 0 0 1-1.935-.424 1.252 1.252 0 0 1-.764.258h-1.71a1.255 1.255 0 0 1-1.256-1.255V7.687a2.402 2.402 0 0 1-.428.625c.253.23.412.561.412.93v7.553a1.255 1.255 0 0 1-1.256 1.255h-1.843a1.25 1.25 0 0 1-.894-.373c-.228.23-.544.373-.894.373H51.32a1.255 1.255 0 0 1-1.256-1.255v-1.251l-.061.117a4.703 4.703 0 0 1-1.782 1.884 4.767 4.767 0 0 1-2.485.67 5.6 5.6 0 0 1-1.485-.188l.009 2.764a1.255 1.255 0 0 1-1.255 1.259h-1.729a1.255 1.255 0 0 1-1.255-1.255v-3.537a1.255 1.255 0 0 1-1.167.793h-1.679a1.25 1.25 0 0 1-.77-.263 4.47 4.47 0 0 1-1.945.429c-.885 0-1.724-.21-2.495-.632l-.017-.01a4.983 4.983 0 0 1-1.081-.836 1.255 1.255 0 0 1-1.254 1.312h-1.81a1.255 1.255 0 0 1-1.228-.99l-.782-3.625-2.044 3.939a1.255 1.255 0 0 1-1.115.676h-.098a1.255 1.255 0 0 1-1.116-.68l-2.061-3.994zM35.92 16.63l.207-.114.223-.15c.329-.237.574-.499.735-.785l.061-.118.033 1.332h1.678V9.242h-1.694l-.033 1.267c-.088-.22-.264-.438-.526-.658l-.032-.028a3.16 3.16 0 0 0-.668-.428l-.27-.12a3.293 3.293 0 0 0-1.235-.23c-.757 0-1.415.163-1.974.493a3.36 3.36 0 0 0-1.3 1.382c-.297.593-.444 1.284-.444 2.074 0 .8.17 1.503.51 2.107a3.795 3.795 0 0 0 1.382 1.381 3.883 3.883 0 0 0 1.893.477c.53 0 1.015-.11 1.455-.33zm-2.789-5.38c-.384.45-.575 1.038-.575 1.762 0 .735.186 1.332.559 1.794.384.45.933.675 1.645.675a2.25 2.25 0 0 0 .934-.19 2.17 2.17 0 0 0 .468-.29l.178-.161a2.163 2.163 0 0 0 .397-.561c.163-.333.244-.717.244-1.15v-.115c0-.472-.098-.894-.296-1.267l-.043-.077a2.211 2.211 0 0 0-.633-.709l-.13-.086-.047-.028a2.099 2.099 0 0 0-1.073-.285c-.702 0-1.244.231-1.629.692zm2.316 2.706c.163-.17.28-.407.28-.83v-.114c0-.292-.06-.508-.15-.68a.958.958 0 0 0-.353-.389.851.851 0 0 0-.464-.127c-.4 0-.56.114-.664.239l-.01.012c-.148.174-.275.45-.275.945 0 .506.122.801.27.99.097.11.266.224.68.224.303 0 .504-.09.687-.269zm7.545 1.705a2.626 2.626 0 0 0 .331.423c.213.22.464.402.755.548l.173.074c.433.17.93.255 1.49.255.68 0 1.295-.165 1.844-.493a3.447 3.447 0 0 0 1.316-1.4c.329-.603.493-1.299.493-2.089 0-1.273-.33-2.243-.988-2.913-.658-.68-1.52-1.02-2.584-1.02-.598 0-1.124.115-1.575.347a2.807 2.807 0 0 0-.415.262l-.199.166a3.35 3.35 0 0 0-.64.82V9.242h-1.712v11.553h1.729l-.017-5.134zm.53-1.138c.137.193.297.36.48.5l.155.11.053.034c.34.197.713.297 1.119.297.714 0 1.262-.225 1.645-.675.385-.46.576-1.048.576-1.762 0-.746-.192-1.338-.576-1.777-.372-.45-.92-.675-1.645-.675-.29 0-.569.053-.835.16a2.366 2.366 0 0 0-.284.136 1.99 1.99 0 0 0-.363.254 2.237 2.237 0 0 0-.46.569l-.082.162a2.56 2.56 0 0 0-.213 1.072v.115c0 .471.098.894.296 1.267l.135.211zm.964-.818a1.11 1.11 0 0 0 .367.385.937.937 0 0 0 .476.118c.423 0 .59-.117.687-.23.159-.194.28-.478.28-.95 0-.53-.133-.8-.266-.952l-.021-.025c-.078-.094-.231-.221-.68-.221a.995.995 0 0 0-.503.135l-.012.007a.859.859 0 0 0-.335.343c-.073.133-.132.324-.132.614v.115a1.43 1.43 0 0 0 .14.66zm15.7-6.222c.232-.23.346-.516.346-.856a1.053 1.053 0 0 0-.345-.79 1.175 1.175 0 0 0-.84-.329c-.34 0-.625.11-.855.33a1.053 1.053 0 0 0-.346.79c0 .34.115.625.346.855.23.23.516.346.856.346.34 0 .62-.115.839-.346zm4.337 9.314.033-1.332c.128.269.324.518.59.747l.098.081a3.727 3.727 0 0 0 .316.224l.223.122a3.21 3.21 0 0 0 1.44.322 3.785 3.785 0 0 0 1.875-.477 3.52 3.52 0 0 0 1.382-1.366c.352-.593.526-1.29.526-2.09 0-.79-.147-1.48-.444-2.073a3.235 3.235 0 0 0-1.283-1.399c-.549-.34-1.195-.51-1.942-.51a3.476 3.476 0 0 0-1.527.344l-.086.043-.165.09a3.412 3.412 0 0 0-.33.214c-.288.21-.507.446-.656.707a1.893 1.893 0 0 0-.099.198l.082-1.283V4.701h-1.744v12.095zm.473-2.509a2.482 2.482 0 0 0 .566.7c.078.065.159.125.245.18l.144.08a2.105 2.105 0 0 0 .975.232c.713 0 1.262-.225 1.645-.675.384-.46.576-1.053.576-1.778 0-.734-.192-1.327-.576-1.777-.373-.46-.921-.692-1.645-.692a2.18 2.18 0 0 0-1.015.235c-.147.075-.285.17-.415.282l-.15.142a2.086 2.086 0 0 0-.42.594c-.149.32-.223.685-.223 1.1v.115c0 .47.097.89.293 1.26zm2.616-.293c.157-.191.28-.479.28-.967 0-.51-.13-.79-.276-.961l-.021-.026c-.082-.1-.232-.225-.67-.225a.868.868 0 0 0-.681.279l-.012.011c-.154.155-.274.38-.274.807v.115c0 .285.057.499.144.669a1.13 1.13 0 0 0 .367.405c.137.082.28.123.455.123.423 0 .59-.118.686-.23zm8.266-3.013c.23-.087.472-.134.724-.14l.069-.002c.329 0 .542.033.642.099l.247-1.794c-.13-.066-.37-.099-.717-.099a2.3 2.3 0 0 0-.545.063 2.086 2.086 0 0 0-.411.148 2.18 2.18 0 0 0-.4.249 2.482 2.482 0 0 0-.485.499 2.659 2.659 0 0 0-.32.581l-.05.137v-1.48h-1.778v7.553h1.777v-3.884c0-.364.053-.678.159-.943a1.49 1.49 0 0 1 .466-.636 2.52 2.52 0 0 1 .399-.253 2.19 2.19 0 0 1 .224-.099zm9.784 2.656.05-.922c0-1.162-.285-2.062-.856-2.698-.559-.647-1.42-.97-2.584-.97-.746 0-1.415.163-2.007.493a3.462 3.462 0 0 0-1.4 1.382c-.329.604-.493 1.306-.493 2.106 0 .714.143 1.371.428 1.975.285.593.73 1.07 1.332 1.432.604.351 1.355.526 2.255.526.649 0 1.204-.062 1.668-.185l.044-.012.135-.04c.409-.122.736-.263.984-.421l-.542-1.267c-.2.108-.415.199-.642.274l-.297.087c-.34.088-.773.131-1.3.131-.636 0-1.135-.147-1.497-.444a1.573 1.573 0 0 1-.192-.193c-.244-.294-.415-.705-.512-1.234l-.004-.021h5.43zm-5.427-1.256-.003.022h3.752v-.138c-.007-.485-.104-.857-.288-1.118a1.056 1.056 0 0 0-.156-.176c-.307-.285-.746-.428-1.316-.428-.657 0-1.155.202-1.494.604-.253.3-.417.712-.494 1.234zm-27.053 2.77V4.7h-1.86v12.095h5.333V15.15zm7.103-5.908v7.553h-1.843V9.242h1.843z'/%3E%3Cpath fill='%23fff' d='m19.63 11.151-.757-1.71-.345 1.71-1.12 5.644h-1.827L18.083 4.7h.197l3.325 6.533.988 2.19.988-2.19L26.839 4.7h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.93 5.644h-.098l-2.913-5.644zm14.836 5.81c-.68 0-1.311-.16-1.893-.478a3.795 3.795 0 0 1-1.381-1.382c-.34-.604-.51-1.306-.51-2.106 0-.79.147-1.482.444-2.074a3.364 3.364 0 0 1 1.3-1.382c.559-.33 1.217-.494 1.974-.494a3.293 3.293 0 0 1 1.234.231 3.341 3.341 0 0 1 .97.575c.264.22.44.439.527.659l.033-1.267h1.694v7.553H37.18l-.033-1.332c-.186.395-.526.746-1.02 1.053a3.167 3.167 0 0 1-1.662.444zm.296-1.482c.626 0 1.152-.214 1.58-.642.428-.44.642-1.01.642-1.711v-.115c0-.472-.098-.894-.296-1.267a2.211 2.211 0 0 0-.807-.872 2.098 2.098 0 0 0-1.119-.313c-.702 0-1.245.231-1.629.692-.384.45-.575 1.037-.575 1.76 0 .736.186 1.333.559 1.795.384.45.933.675 1.645.675zm6.521-6.237h1.711v1.4c.604-1.065 1.547-1.597 2.83-1.597 1.064 0 1.926.34 2.584 1.02.659.67.988 1.641.988 2.914 0 .79-.164 1.487-.493 2.09a3.456 3.456 0 0 1-1.316 1.399 3.51 3.51 0 0 1-1.844.493c-.636 0-1.19-.11-1.662-.329a2.665 2.665 0 0 1-1.086-.97l.017 5.134h-1.728V9.242zm4.048 6.22c.714 0 1.262-.224 1.645-.674.385-.46.576-1.048.576-1.762 0-.746-.192-1.338-.576-1.777-.372-.45-.92-.675-1.645-.675-.395 0-.768.098-1.12.296-.34.187-.613.46-.822.823-.197.351-.296.763-.296 1.234v.115c0 .472.098.894.296 1.267.209.362.483.647.823.855.34.197.713.297 1.119.297z'/%3E%3Cpath fill='%23e1e3e9' d='M51.325 4.7h1.86v10.45h3.473v1.646h-5.333zm7.12 4.542h1.843v7.553h-1.843zm.905-1.415a1.159 1.159 0 0 1-.856-.346 1.165 1.165 0 0 1-.346-.856 1.053 1.053 0 0 1 .346-.79c.23-.219.516-.329.856-.329.329 0 .609.11.839.33a1.053 1.053 0 0 1 .345.79 1.159 1.159 0 0 1-.345.855c-.22.23-.5.346-.84.346zm7.875 9.133a3.167 3.167 0 0 1-1.662-.444c-.482-.307-.817-.658-1.004-1.053l-.033 1.332h-1.71V4.701h1.743v4.657l-.082 1.283c.186-.438.548-.812 1.086-1.119a3.486 3.486 0 0 1 1.778-.477c.746 0 1.393.17 1.942.51a3.235 3.235 0 0 1 1.283 1.4c.297.592.444 1.282.444 2.072 0 .8-.175 1.498-.526 2.09a3.52 3.52 0 0 1-1.382 1.366 3.785 3.785 0 0 1-1.876.477zm-.296-1.481c.713 0 1.26-.225 1.645-.675.384-.46.577-1.053.577-1.778 0-.734-.193-1.327-.577-1.776-.373-.46-.921-.692-1.645-.692a2.115 2.115 0 0 0-1.58.659c-.428.428-.642.992-.642 1.694v.115c0 .473.098.895.296 1.267a2.385 2.385 0 0 0 .807.872 2.1 2.1 0 0 0 1.119.313zm5.927-6.237h1.777v1.481c.176-.505.46-.91.856-1.217a2.14 2.14 0 0 1 1.349-.46c.351 0 .593.032.724.098l-.247 1.794c-.099-.066-.313-.099-.642-.099-.516 0-.988.164-1.416.494-.417.329-.626.855-.626 1.58v3.883h-1.777V9.242zm9.534 7.718c-.9 0-1.651-.175-2.255-.526-.603-.362-1.047-.84-1.332-1.432a4.567 4.567 0 0 1-.428-1.975c0-.8.164-1.502.493-2.106a3.462 3.462 0 0 1 1.4-1.382c.592-.33 1.262-.494 2.007-.494 1.163 0 2.024.324 2.584.97.57.637.856 1.537.856 2.7 0 .296-.017.603-.05.92h-5.43c.12.67.356 1.153.708 1.45.362.296.86.443 1.497.443.526 0 .96-.044 1.3-.131a4.123 4.123 0 0 0 .938-.362l.542 1.267c-.274.175-.647.329-1.119.46-.472.132-1.042.197-1.711.197zm1.596-4.558c.01-.68-.137-1.158-.444-1.432-.307-.285-.746-.428-1.316-.428-1.152 0-1.815.62-1.991 1.86h3.752z'/%3E%3Cg fill-rule='evenodd' stroke-width='1.036'%3E%3Cpath fill='%23000' fill-opacity='.4' d='m8.166 16.146-.002.002a1.54 1.54 0 0 1-2.009 0l-.002-.002-.043-.034-.002-.002-.199-.162H4.377a.657.657 0 0 0-.659.659v1.84a.657.657 0 0 0 .659.659h5.565a.657.657 0 0 0 .659-.659v-1.84a.657.657 0 0 0-.659-.659H8.411l-.202.164zm-1.121-.905a.29.29 0 0 0 .113.023.286.286 0 0 0 .189-.07l.077-.063c.634-.508 4.672-3.743 4.672-7.575 0-2.55-2.215-4.625-4.938-4.625S2.221 5.006 2.221 7.556c0 3.225 2.86 6.027 4.144 7.137h.004l.04.038.484.4.077.063a.628.628 0 0 0 .074.047zm-2.52-.548a16.898 16.898 0 0 1-1.183-1.315C2.187 11.942.967 9.897.967 7.555c0-3.319 2.855-5.88 6.192-5.88 3.338 0 6.193 2.561 6.193 5.881 0 2.34-1.22 4.387-2.376 5.822a16.898 16.898 0 0 1-1.182 1.315h.15a1.912 1.912 0 0 1 1.914 1.914v1.84a1.912 1.912 0 0 1-1.914 1.914H4.377a1.912 1.912 0 0 1-1.914-1.914v-1.84a1.912 1.912 0 0 1 1.914-1.914zm3.82-6.935c0 .692-.55 1.222-1.187 1.222s-1.185-.529-1.185-1.222.548-1.222 1.185-1.222c.638 0 1.186.529 1.186 1.222zm-1.186 2.477c1.348 0 2.442-1.11 2.442-2.478S8.507 5.28 7.159 5.28 4.72 6.39 4.72 7.758s1.092 2.477 2.44 2.477zm2.048 7.71H5.114v-.838h4.093z'/%3E%3Cpath fill='%23e1e3e9' d='M2.222 7.555c0-2.55 2.214-4.625 4.937-4.625 2.723 0 4.938 2.075 4.938 4.625 0 3.832-4.038 7.068-4.672 7.575l-.077.063a.286.286 0 0 1-.189.07.286.286 0 0 1-.188-.07l-.077-.063c-.634-.507-4.672-3.743-4.672-7.575zm4.937 2.68c1.348 0 2.442-1.11 2.442-2.478S8.507 5.28 7.159 5.28 4.72 6.39 4.72 7.758s1.092 2.477 2.44 2.477z'/%3E%3Cpath fill='%23fff' d='M4.377 15.948a.657.657 0 0 0-.659.659v1.84a.657.657 0 0 0 .659.659h5.565a.657.657 0 0 0 .659-.659v-1.84a.657.657 0 0 0-.659-.659zm4.83 1.16H5.114v.838h4.093z'/%3E%3C/g%3E%3C/svg%3E");
|
|
380
335
|
}
|
|
381
336
|
}
|
|
382
|
-
|
|
383
|
-
@media (-ms-high-contrast:black-on-white) {
|
|
337
|
+
@media (-ms-high-contrast: black-on-white) {
|
|
384
338
|
a.maplibregl-ctrl-logo {
|
|
385
|
-
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='23' fill='none'%3E%3Cpath fill='%23000' fill-opacity='.4' fill-rule='evenodd' d='M17.408 16.796h-1.827l2.501-12.095h.198l3.324 6.533.988 2.19.988-2.19 3.258-6.533h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.929 5.644h-.098l-2.914-5.644-.757-1.71-.345 1.71zm1.958-3.42-.726 3.663a1.255 1.255 0 0 1-1.232 1.011h-1.827a1.255 1.255 0 0 1-1.229-1.509l2.501-12.095a1.255 1.255 0 0 1 1.23-1.001h.197a1.25 1.25 0 0 1 1.12.685l3.19 6.273 3.125-6.263a1.25 1.25 0 0 1 1.123-.695h.181a1.255 1.255 0 0 1 1.227.991l1.443 6.71a5 5 0 0 1 .314-.787l.009-.016a4.6 4.6 0 0 1 1.777-1.887c.782-.46 1.668-.667 2.611-.667a4.6 4.6 0 0 1 1.7.32l.306.134c.21-.16.474-.256.759-.256h1.694a1.255 1.255 0 0 1 1.212.925 1.255 1.255 0 0 1 1.212-.925h1.711c.284 0 .545.094.755.252.613-.3 1.312-.45 2.075-.45 1.356 0 2.557.445 3.482 1.4q.47.48.763 1.064V4.701a1.255 1.255 0 0 1 1.255-1.255h1.86A1.255 1.255 0 0 1 54.44 4.7v9.194h2.217c.19 0 .37.043.532.118v-4.77c0-.356.147-.678.385-.906a2.42 2.42 0 0 1-.682-1.71c0-.665.267-1.253.735-1.7a2.45 2.45 0 0 1 1.722-.674 2.43 2.43 0 0 1 1.705.675q.318.302.504.683V4.7a1.255 1.255 0 0 1 1.255-1.255h1.744A1.255 1.255 0 0 1 65.812 4.7v3.335a4.8 4.8 0 0 1 1.526-.246c.938 0 1.817.214 2.59.69a4.47 4.47 0 0 1 1.67 1.743v-.98a1.255 1.255 0 0 1 1.256-1.256h1.777c.233 0 .451.064.639.174a3.4 3.4 0 0 1 1.567-.372c.346 0 .861.02 1.285.232a1.25 1.25 0 0 1 .689 1.004 4.7 4.7 0 0 1 .853-.588c.795-.44 1.675-.647 2.61-.647 1.385 0 2.65.39 3.525 1.396.836.938 1.168 2.173 1.168 3.528q-.001.515-.056 1.051a1.255 1.255 0 0 1-.947 1.09l.408.952a1.255 1.255 0 0 1-.477 1.552c-.418.268-.92.463-1.458.612-.613.171-1.304.244-2.049.244-1.06 0-2.043-.207-2.886-.698l-.015-.008c-.798-.48-1.419-1.135-1.818-1.963l-.004-.008a5.8 5.8 0 0 1-.548-2.512q0-.429.053-.843a1.3 1.3 0 0 1-.333-.086l-.166-.004c-.223 0-.426.062-.643.228-.03.024-.142.139-.142.59v3.883a1.255 1.255 0 0 1-1.256 1.256h-1.777a1.255 1.255 0 0 1-1.256-1.256V15.69l-.032.057a4.8 4.8 0 0 1-1.86 1.833 5.04 5.04 0 0 1-2.484.634 4.5 4.5 0 0 1-1.935-.424 1.25 1.25 0 0 1-.764.258h-1.71a1.255 1.255 0 0 1-1.256-1.255V7.687a2.4 2.4 0 0 1-.428.625c.253.23.412.561.412.93v7.553a1.255 1.255 0 0 1-1.256 1.255h-1.843a1.25 1.25 0 0 1-.894-.373c-.228.23-.544.373-.894.373H51.32a1.255 1.255 0 0 1-1.256-1.255v-1.251l-.061.117a4.7 4.7 0 0 1-1.782 1.884 4.77 4.77 0 0 1-2.485.67 5.6 5.6 0 0 1-1.485-.188l.009 2.764a1.255 1.255 0 0 1-1.255 1.259h-1.729a1.255 1.255 0 0 1-1.255-1.255v-3.537a1.255 1.255 0 0 1-1.167.793h-1.679a1.25 1.25 0 0 1-.77-.263 4.5 4.5 0 0 1-1.945.429c-.885 0-1.724-.21-2.495-.632l-.017-.01a5 5 0 0 1-1.081-.836 1.255 1.255 0 0 1-1.254 1.312h-1.81a1.255 1.255 0 0 1-1.228-.99l-.782-3.625-2.044 3.939a1.25 1.25 0 0 1-1.115.676h-.098a1.25 1.25 0 0 1-1.116-.68l-2.061-3.994zM35.92 16.63l.207-.114.223-.15q.493-.356.735-.785l.061-.118.033 1.332h1.678V9.242h-1.694l-.033 1.267q-.133-.329-.526-.658l-.032-.028a3.2 3.2 0 0 0-.668-.428l-.27-.12a3.3 3.3 0 0 0-1.235-.23q-1.136-.001-1.974.493a3.36 3.36 0 0 0-1.3 1.382q-.445.89-.444 2.074 0 1.2.51 2.107a3.8 3.8 0 0 0 1.382 1.381 3.9 3.9 0 0 0 1.893.477q.795 0 1.455-.33zm-2.789-5.38q-.576.675-.575 1.762 0 1.102.559 1.794.576.675 1.645.675a2.25 2.25 0 0 0 .934-.19 2.2 2.2 0 0 0 .468-.29l.178-.161a2.2 2.2 0 0 0 .397-.561q.244-.5.244-1.15v-.115q0-.708-.296-1.267l-.043-.077a2.2 2.2 0 0 0-.633-.709l-.13-.086-.047-.028a2.1 2.1 0 0 0-1.073-.285q-1.052 0-1.629.692zm2.316 2.706c.163-.17.28-.407.28-.83v-.114c0-.292-.06-.508-.15-.68a.96.96 0 0 0-.353-.389.85.85 0 0 0-.464-.127c-.4 0-.56.114-.664.239l-.01.012c-.148.174-.275.45-.275.945 0 .506.122.801.27.99.097.11.266.224.68.224.303 0 .504-.09.687-.269zm7.545 1.705a2.6 2.6 0 0 0 .331.423q.319.33.755.548l.173.074q.65.255 1.49.255 1.02 0 1.844-.493a3.45 3.45 0 0 0 1.316-1.4q.493-.904.493-2.089 0-1.909-.988-2.913-.988-1.02-2.584-1.02-.898 0-1.575.347a3 3 0 0 0-.415.262l-.199.166a3.4 3.4 0 0 0-.64.82V9.242h-1.712v11.553h1.729l-.017-5.134zm.53-1.138q.206.29.48.5l.155.11.053.034q.51.296 1.119.297 1.07 0 1.645-.675.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.435 0-.835.16a2 2 0 0 0-.284.136 2 2 0 0 0-.363.254 2.2 2.2 0 0 0-.46.569l-.082.162a2.6 2.6 0 0 0-.213 1.072v.115q0 .707.296 1.267l.135.211zm.964-.818a1.1 1.1 0 0 0 .367.385.94.94 0 0 0 .476.118c.423 0 .59-.117.687-.23.159-.194.28-.478.28-.95 0-.53-.133-.8-.266-.952l-.021-.025c-.078-.094-.231-.221-.68-.221a1 1 0 0 0-.503.135l-.012.007a.86.86 0 0 0-.335.343c-.073.133-.132.324-.132.614v.115a1.4 1.4 0 0 0 .14.66zm15.7-6.222q.347-.346.346-.856a1.05 1.05 0 0 0-.345-.79 1.18 1.18 0 0 0-.84-.329q-.51 0-.855.33a1.05 1.05 0 0 0-.346.79q0 .51.346.855.345.346.856.346.51 0 .839-.346zm4.337 9.314.033-1.332q.191.403.59.747l.098.081a4 4 0 0 0 .316.224l.223.122a3.2 3.2 0 0 0 1.44.322 3.8 3.8 0 0 0 1.875-.477 3.5 3.5 0 0 0 1.382-1.366q.527-.89.526-2.09 0-1.184-.444-2.073a3.24 3.24 0 0 0-1.283-1.399q-.823-.51-1.942-.51a3.5 3.5 0 0 0-1.527.344l-.086.043-.165.09a3 3 0 0 0-.33.214q-.432.315-.656.707a2 2 0 0 0-.099.198l.082-1.283V4.701h-1.744v12.095zm.473-2.509a2.5 2.5 0 0 0 .566.7q.117.098.245.18l.144.08a2.1 2.1 0 0 0 .975.232q1.07 0 1.645-.675.576-.69.576-1.778 0-1.102-.576-1.777-.56-.691-1.645-.692a2.2 2.2 0 0 0-1.015.235q-.22.113-.415.282l-.15.142a2.1 2.1 0 0 0-.42.594q-.223.479-.223 1.1v.115q0 .705.293 1.26zm2.616-.293c.157-.191.28-.479.28-.967 0-.51-.13-.79-.276-.961l-.021-.026c-.082-.1-.232-.225-.67-.225a.87.87 0 0 0-.681.279l-.012.011c-.154.155-.274.38-.274.807v.115c0 .285.057.499.144.669a1.1 1.1 0 0 0 .367.405c.137.082.28.123.455.123.423 0 .59-.118.686-.23zm8.266-3.013q.345-.13.724-.14l.069-.002q.493 0 .642.099l.247-1.794q-.196-.099-.717-.099a2.3 2.3 0 0 0-.545.063 2 2 0 0 0-.411.148 2.2 2.2 0 0 0-.4.249 2.5 2.5 0 0 0-.485.499 2.7 2.7 0 0 0-.32.581l-.05.137v-1.48h-1.778v7.553h1.777v-3.884q0-.546.159-.943a1.5 1.5 0 0 1 .466-.636 2.5 2.5 0 0 1 .399-.253 2 2 0 0 1 .224-.099zm9.784 2.656.05-.922q0-1.743-.856-2.698-.838-.97-2.584-.97-1.119-.001-2.007.493a3.46 3.46 0 0 0-1.4 1.382q-.493.906-.493 2.106 0 1.07.428 1.975.428.89 1.332 1.432.906.526 2.255.526.973 0 1.668-.185l.044-.012.135-.04q.613-.184.984-.421l-.542-1.267q-.3.162-.642.274l-.297.087q-.51.131-1.3.131-.954 0-1.497-.444a1.6 1.6 0 0 1-.192-.193q-.366-.44-.512-1.234l-.004-.021zm-5.427-1.256-.003.022h3.752v-.138q-.011-.727-.288-1.118a1 1 0 0 0-.156-.176q-.46-.428-1.316-.428-.986 0-1.494.604-.379.45-.494 1.234zm-27.053 2.77V4.7h-1.86v12.095h5.333V15.15zm7.103-5.908v7.553h-1.843V9.242h1.843z'/%3E%3Cpath fill='%23fff' d='m19.63 11.151-.757-1.71-.345 1.71-1.12 5.644h-1.827L18.083 4.7h.197l3.325 6.533.988 2.19.988-2.19L26.839 4.7h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.93 5.644h-.098l-2.913-5.644zm14.836 5.81q-1.02 0-1.893-.478a3.8 3.8 0 0 1-1.381-1.382q-.51-.906-.51-2.106 0-1.185.444-2.074a3.36 3.36 0 0 1 1.3-1.382q.839-.494 1.974-.494a3.3 3.3 0 0 1 1.234.231 3.3 3.3 0 0 1 .97.575q.396.33.527.659l.033-1.267h1.694v7.553H37.18l-.033-1.332q-.279.593-1.02 1.053a3.17 3.17 0 0 1-1.662.444zm.296-1.482q.938 0 1.58-.642.642-.66.642-1.711v-.115q0-.708-.296-1.267a2.2 2.2 0 0 0-.807-.872 2.1 2.1 0 0 0-1.119-.313q-1.053 0-1.629.692-.575.675-.575 1.76 0 1.103.559 1.795.577.675 1.645.675zm6.521-6.237h1.711v1.4q.906-1.597 2.83-1.597 1.596 0 2.584 1.02.988 1.005.988 2.914 0 1.185-.493 2.09a3.46 3.46 0 0 1-1.316 1.399 3.5 3.5 0 0 1-1.844.493q-.954 0-1.662-.329a2.67 2.67 0 0 1-1.086-.97l.017 5.134h-1.728zm4.048 6.22q1.07 0 1.645-.674.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.592 0-1.12.296-.51.28-.822.823-.296.527-.296 1.234v.115q0 .708.296 1.267.313.543.823.855.51.296 1.119.297z'/%3E%3Cpath fill='%23e1e3e9' d='M51.325 4.7h1.86v10.45h3.473v1.646h-5.333zm7.12 4.542h1.843v7.553h-1.843zm.905-1.415a1.16 1.16 0 0 1-.856-.346 1.17 1.17 0 0 1-.346-.856 1.05 1.05 0 0 1 .346-.79q.346-.329.856-.329.494 0 .839.33a1.05 1.05 0 0 1 .345.79 1.16 1.16 0 0 1-.345.855q-.33.346-.84.346zm7.875 9.133a3.17 3.17 0 0 1-1.662-.444q-.723-.46-1.004-1.053l-.033 1.332h-1.71V4.701h1.743v4.657l-.082 1.283q.279-.658 1.086-1.119a3.5 3.5 0 0 1 1.778-.477q1.119 0 1.942.51a3.24 3.24 0 0 1 1.283 1.4q.445.888.444 2.072 0 1.201-.526 2.09a3.5 3.5 0 0 1-1.382 1.366 3.8 3.8 0 0 1-1.876.477zm-.296-1.481q1.069 0 1.645-.675.577-.69.577-1.778 0-1.102-.577-1.776-.56-.691-1.645-.692a2.12 2.12 0 0 0-1.58.659q-.642.641-.642 1.694v.115q0 .71.296 1.267a2.4 2.4 0 0 0 .807.872 2.1 2.1 0 0 0 1.119.313zm5.927-6.237h1.777v1.481q.263-.757.856-1.217a2.14 2.14 0 0 1 1.349-.46q.527 0 .724.098l-.247 1.794q-.149-.099-.642-.099-.774 0-1.416.494-.626.493-.626 1.58v3.883h-1.777V9.242zm9.534 7.718q-1.35 0-2.255-.526-.904-.543-1.332-1.432a4.6 4.6 0 0 1-.428-1.975q0-1.2.493-2.106a3.46 3.46 0 0 1 1.4-1.382q.889-.495 2.007-.494 1.744 0 2.584.97.855.956.856 2.7 0 .444-.05.92h-5.43q.18 1.005.708 1.45.542.443 1.497.443.79 0 1.3-.131a4 4 0 0 0 .938-.362l.542 1.267q-.411.263-1.119.46-.708.198-1.711.197zm1.596-4.558q.016-1.02-.444-1.432-.46-.428-1.316-.428-1.728 0-1.991 1.86z'/%3E%3Cpath d='M5.074 15.948a.484.657 0 0 0-.486.659v1.84a.484.657 0 0 0 .486.659h4.101a.484.657 0 0 0 .486-.659v-1.84a.484.657 0 0 0-.486-.659zm3.56 1.16H5.617v.838h3.017z' style='fill:%23fff;fill-rule:evenodd;stroke-width:1.03600001'/%3E%3Cg style='stroke-width:1.12603545'%3E%3Cpath d='M-9.408-1.416c-3.833-.025-7.056 2.912-7.08 6.615-.02 3.08 1.653 4.832 3.107 6.268.903.892 1.721 1.74 2.32 2.902l-.525-.004c-.543-.003-.992.304-1.24.639a1.87 1.87 0 0 0-.362 1.121l-.011 1.877c-.003.402.104.787.347 1.125.244.338.688.653 1.23.656l4.142.028c.542.003.99-.306 1.238-.641a1.87 1.87 0 0 0 .363-1.121l.012-1.875a1.87 1.87 0 0 0-.348-1.127c-.243-.338-.688-.653-1.23-.656l-.518-.004c.597-1.145 1.425-1.983 2.348-2.87 1.473-1.414 3.18-3.149 3.2-6.226-.016-3.59-2.923-6.684-6.993-6.707m-.006 1.1v.002c3.274.02 5.92 2.532 5.9 5.6-.017 2.706-1.39 4.026-2.863 5.44-1.034.994-2.118 2.033-2.814 3.633-.018.041-.052.055-.075.065q-.013.004-.02.01a.34.34 0 0 1-.226.084.34.34 0 0 1-.224-.086l-.092-.077c-.699-1.615-1.768-2.669-2.781-3.67-1.454-1.435-2.797-2.762-2.78-5.478.02-3.067 2.7-5.545 5.975-5.523m-.02 2.826c-1.62-.01-2.944 1.315-2.955 2.96-.01 1.646 1.295 2.988 2.916 2.999h.002c1.621.01 2.943-1.316 2.953-2.961.011-1.646-1.294-2.988-2.916-2.998m-.005 1.1c1.017.006 1.829.83 1.822 1.89s-.83 1.874-1.848 1.867c-1.018-.006-1.829-.83-1.822-1.89s.83-1.874 1.848-1.868m-2.155 11.857 4.14.025c.271.002.49.305.487.676l-.013 1.875c-.003.37-.224.67-.495.668l-4.14-.025c-.27-.002-.487-.306-.485-.676l.012-1.875c.003-.37.224-.67.494-.668' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:evenodd;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%23000;fill-opacity:.4;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-9.415-.316C-12.69-.338-15.37 2.14-15.39 5.207c-.017 2.716 1.326 4.041 2.78 5.477 1.013 1 2.081 2.055 2.78 3.67l.092.076a.34.34 0 0 0 .225.086.34.34 0 0 0 .227-.083l.019-.01c.022-.009.057-.024.074-.064.697-1.6 1.78-2.64 2.814-3.634 1.473-1.414 2.847-2.733 2.864-5.44.02-3.067-2.627-5.58-5.901-5.601m-.057 8.784c1.621.011 2.944-1.315 2.955-2.96.01-1.646-1.295-2.988-2.916-2.999-1.622-.01-2.945 1.315-2.955 2.96s1.295 2.989 2.916 3' style='clip-rule:evenodd;fill:%23e1e3e9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-11.594 15.465c-.27-.002-.492.297-.494.668l-.012 1.876c-.003.371.214.673.485.675l4.14.027c.271.002.492-.298.495-.668l.012-1.877c.003-.37-.215-.672-.485-.674z' style='clip-rule:evenodd;fill:%23fff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3C/g%3E%3C/svg%3E")
|
|
339
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='23' fill='none'%3E%3Cpath fill='%23000' fill-opacity='.4' fill-rule='evenodd' d='M17.408 16.796h-1.827l2.501-12.095h.198l3.324 6.533.988 2.19.988-2.19 3.258-6.533h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.929 5.644h-.098l-2.914-5.644-.757-1.71-.345 1.71zm1.958-3.42-.726 3.663a1.255 1.255 0 0 1-1.232 1.011h-1.827a1.255 1.255 0 0 1-1.229-1.509l2.501-12.095a1.255 1.255 0 0 1 1.23-1.001h.197a1.255 1.255 0 0 1 1.12.685l3.19 6.273 3.125-6.263a1.255 1.255 0 0 1 1.123-.695h.181a1.255 1.255 0 0 1 1.227.991l1.443 6.71a5.11 5.11 0 0 1 .314-.787l.009-.016a4.623 4.623 0 0 1 1.777-1.887c.782-.46 1.668-.667 2.611-.667a4.548 4.548 0 0 1 1.7.32l.306.134c.21-.16.474-.256.759-.256h1.694a1.255 1.255 0 0 1 1.212.925 1.255 1.255 0 0 1 1.212-.925h1.711c.284 0 .545.094.755.252.613-.3 1.312-.45 2.075-.45 1.356 0 2.557.445 3.482 1.4.314.319.566.676.763 1.064V4.701a1.255 1.255 0 0 1 1.255-1.255h1.86A1.255 1.255 0 0 1 54.44 4.7v9.194h2.217c.19 0 .37.043.532.118v-4.77c0-.356.147-.678.385-.906a2.416 2.416 0 0 1-.682-1.71c0-.665.267-1.253.735-1.7a2.448 2.448 0 0 1 1.722-.674 2.43 2.43 0 0 1 1.705.675c.211.2.381.43.504.683V4.7a1.255 1.255 0 0 1 1.255-1.255h1.744A1.255 1.255 0 0 1 65.812 4.7v3.335a4.76 4.76 0 0 1 1.526-.246c.938 0 1.817.214 2.59.69a4.47 4.47 0 0 1 1.67 1.743v-.98a1.255 1.255 0 0 1 1.256-1.256h1.777c.233 0 .451.064.639.174a3.407 3.407 0 0 1 1.567-.372c.346 0 .861.02 1.285.232a1.255 1.255 0 0 1 .689 1.004 4.73 4.73 0 0 1 .853-.588c.795-.44 1.675-.647 2.61-.647 1.385 0 2.65.39 3.525 1.396.836.938 1.168 2.173 1.168 3.528 0 .343-.02.694-.056 1.051a1.255 1.255 0 0 1-.947 1.09l.408.952a1.255 1.255 0 0 1-.477 1.552c-.418.268-.92.463-1.458.612-.613.171-1.304.244-2.049.244-1.06 0-2.043-.207-2.886-.698l-.015-.008c-.798-.48-1.419-1.135-1.818-1.963l-.004-.008a5.815 5.815 0 0 1-.548-2.512c0-.286.017-.567.053-.843a1.255 1.255 0 0 1-.333-.086l-.166-.004c-.223 0-.426.062-.643.228-.03.024-.142.139-.142.59v3.883a1.255 1.255 0 0 1-1.256 1.256h-1.777a1.255 1.255 0 0 1-1.256-1.256V15.69l-.032.057a4.778 4.778 0 0 1-1.86 1.833 5.04 5.04 0 0 1-2.484.634 4.47 4.47 0 0 1-1.935-.424 1.252 1.252 0 0 1-.764.258h-1.71a1.255 1.255 0 0 1-1.256-1.255V7.687a2.402 2.402 0 0 1-.428.625c.253.23.412.561.412.93v7.553a1.255 1.255 0 0 1-1.256 1.255h-1.843a1.25 1.25 0 0 1-.894-.373c-.228.23-.544.373-.894.373H51.32a1.255 1.255 0 0 1-1.256-1.255v-1.251l-.061.117a4.703 4.703 0 0 1-1.782 1.884 4.767 4.767 0 0 1-2.485.67 5.6 5.6 0 0 1-1.485-.188l.009 2.764a1.255 1.255 0 0 1-1.255 1.259h-1.729a1.255 1.255 0 0 1-1.255-1.255v-3.537a1.255 1.255 0 0 1-1.167.793h-1.679a1.25 1.25 0 0 1-.77-.263 4.47 4.47 0 0 1-1.945.429c-.885 0-1.724-.21-2.495-.632l-.017-.01a4.983 4.983 0 0 1-1.081-.836 1.255 1.255 0 0 1-1.254 1.312h-1.81a1.255 1.255 0 0 1-1.228-.99l-.782-3.625-2.044 3.939a1.255 1.255 0 0 1-1.115.676h-.098a1.255 1.255 0 0 1-1.116-.68l-2.061-3.994zM35.92 16.63l.207-.114.223-.15c.329-.237.574-.499.735-.785l.061-.118.033 1.332h1.678V9.242h-1.694l-.033 1.267c-.088-.22-.264-.438-.526-.658l-.032-.028a3.16 3.16 0 0 0-.668-.428l-.27-.12a3.293 3.293 0 0 0-1.235-.23c-.757 0-1.415.163-1.974.493a3.36 3.36 0 0 0-1.3 1.382c-.297.593-.444 1.284-.444 2.074 0 .8.17 1.503.51 2.107a3.795 3.795 0 0 0 1.382 1.381 3.883 3.883 0 0 0 1.893.477c.53 0 1.015-.11 1.455-.33zm-2.789-5.38c-.384.45-.575 1.038-.575 1.762 0 .735.186 1.332.559 1.794.384.45.933.675 1.645.675a2.25 2.25 0 0 0 .934-.19 2.17 2.17 0 0 0 .468-.29l.178-.161a2.163 2.163 0 0 0 .397-.561c.163-.333.244-.717.244-1.15v-.115c0-.472-.098-.894-.296-1.267l-.043-.077a2.211 2.211 0 0 0-.633-.709l-.13-.086-.047-.028a2.099 2.099 0 0 0-1.073-.285c-.702 0-1.244.231-1.629.692zm2.316 2.706c.163-.17.28-.407.28-.83v-.114c0-.292-.06-.508-.15-.68a.958.958 0 0 0-.353-.389.851.851 0 0 0-.464-.127c-.4 0-.56.114-.664.239l-.01.012c-.148.174-.275.45-.275.945 0 .506.122.801.27.99.097.11.266.224.68.224.303 0 .504-.09.687-.269zm7.545 1.705a2.626 2.626 0 0 0 .331.423c.213.22.464.402.755.548l.173.074c.433.17.93.255 1.49.255.68 0 1.295-.165 1.844-.493a3.447 3.447 0 0 0 1.316-1.4c.329-.603.493-1.299.493-2.089 0-1.273-.33-2.243-.988-2.913-.658-.68-1.52-1.02-2.584-1.02-.598 0-1.124.115-1.575.347a2.807 2.807 0 0 0-.415.262l-.199.166a3.35 3.35 0 0 0-.64.82V9.242h-1.712v11.553h1.729l-.017-5.134zm.53-1.138c.137.193.297.36.48.5l.155.11.053.034c.34.197.713.297 1.119.297.714 0 1.262-.225 1.645-.675.385-.46.576-1.048.576-1.762 0-.746-.192-1.338-.576-1.777-.372-.45-.92-.675-1.645-.675-.29 0-.569.053-.835.16a2.366 2.366 0 0 0-.284.136 1.99 1.99 0 0 0-.363.254 2.237 2.237 0 0 0-.46.569l-.082.162a2.56 2.56 0 0 0-.213 1.072v.115c0 .471.098.894.296 1.267l.135.211zm.964-.818a1.11 1.11 0 0 0 .367.385.937.937 0 0 0 .476.118c.423 0 .59-.117.687-.23.159-.194.28-.478.28-.95 0-.53-.133-.8-.266-.952l-.021-.025c-.078-.094-.231-.221-.68-.221a.995.995 0 0 0-.503.135l-.012.007a.859.859 0 0 0-.335.343c-.073.133-.132.324-.132.614v.115a1.43 1.43 0 0 0 .14.66zm15.7-6.222c.232-.23.346-.516.346-.856a1.053 1.053 0 0 0-.345-.79 1.175 1.175 0 0 0-.84-.329c-.34 0-.625.11-.855.33a1.053 1.053 0 0 0-.346.79c0 .34.115.625.346.855.23.23.516.346.856.346.34 0 .62-.115.839-.346zm4.337 9.314.033-1.332c.128.269.324.518.59.747l.098.081a3.727 3.727 0 0 0 .316.224l.223.122a3.21 3.21 0 0 0 1.44.322 3.785 3.785 0 0 0 1.875-.477 3.52 3.52 0 0 0 1.382-1.366c.352-.593.526-1.29.526-2.09 0-.79-.147-1.48-.444-2.073a3.235 3.235 0 0 0-1.283-1.399c-.549-.34-1.195-.51-1.942-.51a3.476 3.476 0 0 0-1.527.344l-.086.043-.165.09a3.412 3.412 0 0 0-.33.214c-.288.21-.507.446-.656.707a1.893 1.893 0 0 0-.099.198l.082-1.283V4.701h-1.744v12.095zm.473-2.509a2.482 2.482 0 0 0 .566.7c.078.065.159.125.245.18l.144.08a2.105 2.105 0 0 0 .975.232c.713 0 1.262-.225 1.645-.675.384-.46.576-1.053.576-1.778 0-.734-.192-1.327-.576-1.777-.373-.46-.921-.692-1.645-.692a2.18 2.18 0 0 0-1.015.235c-.147.075-.285.17-.415.282l-.15.142a2.086 2.086 0 0 0-.42.594c-.149.32-.223.685-.223 1.1v.115c0 .47.097.89.293 1.26zm2.616-.293c.157-.191.28-.479.28-.967 0-.51-.13-.79-.276-.961l-.021-.026c-.082-.1-.232-.225-.67-.225a.868.868 0 0 0-.681.279l-.012.011c-.154.155-.274.38-.274.807v.115c0 .285.057.499.144.669a1.13 1.13 0 0 0 .367.405c.137.082.28.123.455.123.423 0 .59-.118.686-.23zm8.266-3.013c.23-.087.472-.134.724-.14l.069-.002c.329 0 .542.033.642.099l.247-1.794c-.13-.066-.37-.099-.717-.099a2.3 2.3 0 0 0-.545.063 2.086 2.086 0 0 0-.411.148 2.18 2.18 0 0 0-.4.249 2.482 2.482 0 0 0-.485.499 2.659 2.659 0 0 0-.32.581l-.05.137v-1.48h-1.778v7.553h1.777v-3.884c0-.364.053-.678.159-.943a1.49 1.49 0 0 1 .466-.636 2.52 2.52 0 0 1 .399-.253 2.19 2.19 0 0 1 .224-.099zm9.784 2.656.05-.922c0-1.162-.285-2.062-.856-2.698-.559-.647-1.42-.97-2.584-.97-.746 0-1.415.163-2.007.493a3.462 3.462 0 0 0-1.4 1.382c-.329.604-.493 1.306-.493 2.106 0 .714.143 1.371.428 1.975.285.593.73 1.07 1.332 1.432.604.351 1.355.526 2.255.526.649 0 1.204-.062 1.668-.185l.044-.012.135-.04c.409-.122.736-.263.984-.421l-.542-1.267c-.2.108-.415.199-.642.274l-.297.087c-.34.088-.773.131-1.3.131-.636 0-1.135-.147-1.497-.444a1.573 1.573 0 0 1-.192-.193c-.244-.294-.415-.705-.512-1.234l-.004-.021h5.43zm-5.427-1.256-.003.022h3.752v-.138c-.007-.485-.104-.857-.288-1.118a1.056 1.056 0 0 0-.156-.176c-.307-.285-.746-.428-1.316-.428-.657 0-1.155.202-1.494.604-.253.3-.417.712-.494 1.234zm-27.053 2.77V4.7h-1.86v12.095h5.333V15.15zm7.103-5.908v7.553h-1.843V9.242h1.843z'/%3E%3Cpath fill='%23fff' d='m19.63 11.151-.757-1.71-.345 1.71-1.12 5.644h-1.827L18.083 4.7h.197l3.325 6.533.988 2.19.988-2.19L26.839 4.7h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.93 5.644h-.098l-2.913-5.644zm14.836 5.81c-.68 0-1.311-.16-1.893-.478a3.795 3.795 0 0 1-1.381-1.382c-.34-.604-.51-1.306-.51-2.106 0-.79.147-1.482.444-2.074a3.364 3.364 0 0 1 1.3-1.382c.559-.33 1.217-.494 1.974-.494a3.293 3.293 0 0 1 1.234.231 3.341 3.341 0 0 1 .97.575c.264.22.44.439.527.659l.033-1.267h1.694v7.553H37.18l-.033-1.332c-.186.395-.526.746-1.02 1.053a3.167 3.167 0 0 1-1.662.444zm.296-1.482c.626 0 1.152-.214 1.58-.642.428-.44.642-1.01.642-1.711v-.115c0-.472-.098-.894-.296-1.267a2.211 2.211 0 0 0-.807-.872 2.098 2.098 0 0 0-1.119-.313c-.702 0-1.245.231-1.629.692-.384.45-.575 1.037-.575 1.76 0 .736.186 1.333.559 1.795.384.45.933.675 1.645.675zm6.521-6.237h1.711v1.4c.604-1.065 1.547-1.597 2.83-1.597 1.064 0 1.926.34 2.584 1.02.659.67.988 1.641.988 2.914 0 .79-.164 1.487-.493 2.09a3.456 3.456 0 0 1-1.316 1.399 3.51 3.51 0 0 1-1.844.493c-.636 0-1.19-.11-1.662-.329a2.665 2.665 0 0 1-1.086-.97l.017 5.134h-1.728V9.242zm4.048 6.22c.714 0 1.262-.224 1.645-.674.385-.46.576-1.048.576-1.762 0-.746-.192-1.338-.576-1.777-.372-.45-.92-.675-1.645-.675-.395 0-.768.098-1.12.296-.34.187-.613.46-.822.823-.197.351-.296.763-.296 1.234v.115c0 .472.098.894.296 1.267.209.362.483.647.823.855.34.197.713.297 1.119.297z'/%3E%3Cpath fill='%23e1e3e9' d='M51.325 4.7h1.86v10.45h3.473v1.646h-5.333zm7.12 4.542h1.843v7.553h-1.843zm.905-1.415a1.159 1.159 0 0 1-.856-.346 1.165 1.165 0 0 1-.346-.856 1.053 1.053 0 0 1 .346-.79c.23-.219.516-.329.856-.329.329 0 .609.11.839.33a1.053 1.053 0 0 1 .345.79 1.159 1.159 0 0 1-.345.855c-.22.23-.5.346-.84.346zm7.875 9.133a3.167 3.167 0 0 1-1.662-.444c-.482-.307-.817-.658-1.004-1.053l-.033 1.332h-1.71V4.701h1.743v4.657l-.082 1.283c.186-.438.548-.812 1.086-1.119a3.486 3.486 0 0 1 1.778-.477c.746 0 1.393.17 1.942.51a3.235 3.235 0 0 1 1.283 1.4c.297.592.444 1.282.444 2.072 0 .8-.175 1.498-.526 2.09a3.52 3.52 0 0 1-1.382 1.366 3.785 3.785 0 0 1-1.876.477zm-.296-1.481c.713 0 1.26-.225 1.645-.675.384-.46.577-1.053.577-1.778 0-.734-.193-1.327-.577-1.776-.373-.46-.921-.692-1.645-.692a2.115 2.115 0 0 0-1.58.659c-.428.428-.642.992-.642 1.694v.115c0 .473.098.895.296 1.267a2.385 2.385 0 0 0 .807.872 2.1 2.1 0 0 0 1.119.313zm5.927-6.237h1.777v1.481c.176-.505.46-.91.856-1.217a2.14 2.14 0 0 1 1.349-.46c.351 0 .593.032.724.098l-.247 1.794c-.099-.066-.313-.099-.642-.099-.516 0-.988.164-1.416.494-.417.329-.626.855-.626 1.58v3.883h-1.777V9.242zm9.534 7.718c-.9 0-1.651-.175-2.255-.526-.603-.362-1.047-.84-1.332-1.432a4.567 4.567 0 0 1-.428-1.975c0-.8.164-1.502.493-2.106a3.462 3.462 0 0 1 1.4-1.382c.592-.33 1.262-.494 2.007-.494 1.163 0 2.024.324 2.584.97.57.637.856 1.537.856 2.7 0 .296-.017.603-.05.92h-5.43c.12.67.356 1.153.708 1.45.362.296.86.443 1.497.443.526 0 .96-.044 1.3-.131a4.123 4.123 0 0 0 .938-.362l.542 1.267c-.274.175-.647.329-1.119.46-.472.132-1.042.197-1.711.197zm1.596-4.558c.01-.68-.137-1.158-.444-1.432-.307-.285-.746-.428-1.316-.428-1.152 0-1.815.62-1.991 1.86h3.752z'/%3E%3Cg fill-rule='evenodd' stroke-width='1.036'%3E%3Cpath fill='%23000' fill-opacity='.4' d='m8.166 16.146-.002.002a1.54 1.54 0 0 1-2.009 0l-.002-.002-.043-.034-.002-.002-.199-.162H4.377a.657.657 0 0 0-.659.659v1.84a.657.657 0 0 0 .659.659h5.565a.657.657 0 0 0 .659-.659v-1.84a.657.657 0 0 0-.659-.659H8.411l-.202.164zm-1.121-.905a.29.29 0 0 0 .113.023.286.286 0 0 0 .189-.07l.077-.063c.634-.508 4.672-3.743 4.672-7.575 0-2.55-2.215-4.625-4.938-4.625S2.221 5.006 2.221 7.556c0 3.225 2.86 6.027 4.144 7.137h.004l.04.038.484.4.077.063a.628.628 0 0 0 .074.047zm-2.52-.548a16.898 16.898 0 0 1-1.183-1.315C2.187 11.942.967 9.897.967 7.555c0-3.319 2.855-5.88 6.192-5.88 3.338 0 6.193 2.561 6.193 5.881 0 2.34-1.22 4.387-2.376 5.822a16.898 16.898 0 0 1-1.182 1.315h.15a1.912 1.912 0 0 1 1.914 1.914v1.84a1.912 1.912 0 0 1-1.914 1.914H4.377a1.912 1.912 0 0 1-1.914-1.914v-1.84a1.912 1.912 0 0 1 1.914-1.914zm3.82-6.935c0 .692-.55 1.222-1.187 1.222s-1.185-.529-1.185-1.222.548-1.222 1.185-1.222c.638 0 1.186.529 1.186 1.222zm-1.186 2.477c1.348 0 2.442-1.11 2.442-2.478S8.507 5.28 7.159 5.28 4.72 6.39 4.72 7.758s1.092 2.477 2.44 2.477zm2.048 7.71H5.114v-.838h4.093z'/%3E%3Cpath fill='%23e1e3e9' d='M2.222 7.555c0-2.55 2.214-4.625 4.937-4.625 2.723 0 4.938 2.075 4.938 4.625 0 3.832-4.038 7.068-4.672 7.575l-.077.063a.286.286 0 0 1-.189.07.286.286 0 0 1-.188-.07l-.077-.063c-.634-.507-4.672-3.743-4.672-7.575zm4.937 2.68c1.348 0 2.442-1.11 2.442-2.478S8.507 5.28 7.159 5.28 4.72 6.39 4.72 7.758s1.092 2.477 2.44 2.477z'/%3E%3Cpath fill='%23fff' d='M4.377 15.948a.657.657 0 0 0-.659.659v1.84a.657.657 0 0 0 .659.659h5.565a.657.657 0 0 0 .659-.659v-1.84a.657.657 0 0 0-.659-.659zm4.83 1.16H5.114v.838h4.093z'/%3E%3C/g%3E%3C/svg%3E");
|
|
386
340
|
}
|
|
387
341
|
}
|
|
388
|
-
|
|
389
342
|
.maplibregl-ctrl.maplibregl-ctrl-attrib {
|
|
390
|
-
background-color: hsla(0, 0%, 100%, .5);
|
|
343
|
+
background-color: hsla(0, 0%, 100%, 0.5);
|
|
391
344
|
margin: 0;
|
|
392
|
-
padding: 0 5px
|
|
345
|
+
padding: 0 5px;
|
|
393
346
|
}
|
|
394
|
-
|
|
395
347
|
@media screen {
|
|
396
348
|
.maplibregl-ctrl-attrib.maplibregl-compact {
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
position: relative
|
|
349
|
+
background-color: #fff;
|
|
350
|
+
border-radius: 12px;
|
|
351
|
+
box-sizing: content-box;
|
|
352
|
+
margin: 10px;
|
|
353
|
+
min-height: 20px;
|
|
354
|
+
padding: 2px 24px 2px 0;
|
|
355
|
+
position: relative;
|
|
405
356
|
}
|
|
406
|
-
|
|
407
357
|
.maplibregl-ctrl-attrib.maplibregl-compact-show {
|
|
408
|
-
|
|
409
|
-
|
|
358
|
+
padding: 2px 28px 2px 8px;
|
|
359
|
+
visibility: visible;
|
|
410
360
|
}
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
.maplibregl-ctrl-top-left
|
|
414
|
-
|
|
415
|
-
|
|
361
|
+
.maplibregl-ctrl-bottom-left
|
|
362
|
+
> .maplibregl-ctrl-attrib.maplibregl-compact-show,
|
|
363
|
+
.maplibregl-ctrl-top-left > .maplibregl-ctrl-attrib.maplibregl-compact-show {
|
|
364
|
+
border-radius: 12px;
|
|
365
|
+
padding: 2px 8px 2px 28px;
|
|
416
366
|
}
|
|
417
|
-
|
|
418
367
|
.maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-inner {
|
|
419
|
-
|
|
368
|
+
display: none;
|
|
420
369
|
}
|
|
421
|
-
|
|
422
370
|
.maplibregl-ctrl-attrib-button {
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
371
|
+
background-color: hsla(0, 0%, 100%, 0.5);
|
|
372
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill-rule='evenodd' viewBox='0 0 20 20'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");
|
|
373
|
+
border: 0;
|
|
374
|
+
border-radius: 12px;
|
|
375
|
+
box-sizing: border-box;
|
|
376
|
+
cursor: pointer;
|
|
377
|
+
display: none;
|
|
378
|
+
height: 24px;
|
|
379
|
+
outline: none;
|
|
380
|
+
position: absolute;
|
|
381
|
+
right: 0;
|
|
382
|
+
top: 0;
|
|
383
|
+
width: 24px;
|
|
436
384
|
}
|
|
437
|
-
|
|
438
385
|
.maplibregl-ctrl-attrib summary.maplibregl-ctrl-attrib-button {
|
|
439
|
-
|
|
440
|
-
|
|
386
|
+
appearance: none;
|
|
387
|
+
list-style: none;
|
|
441
388
|
}
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
389
|
+
.maplibregl-ctrl-attrib
|
|
390
|
+
summary.maplibregl-ctrl-attrib-button::-webkit-details-marker {
|
|
391
|
+
display: none;
|
|
445
392
|
}
|
|
446
|
-
|
|
447
393
|
.maplibregl-ctrl-bottom-left .maplibregl-ctrl-attrib-button,
|
|
448
394
|
.maplibregl-ctrl-top-left .maplibregl-ctrl-attrib-button {
|
|
449
|
-
|
|
395
|
+
left: 0;
|
|
450
396
|
}
|
|
451
|
-
|
|
452
397
|
.maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-button,
|
|
453
|
-
.maplibregl-ctrl-attrib.maplibregl-compact-show
|
|
454
|
-
|
|
398
|
+
.maplibregl-ctrl-attrib.maplibregl-compact-show
|
|
399
|
+
.maplibregl-ctrl-attrib-inner {
|
|
400
|
+
display: block;
|
|
455
401
|
}
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
402
|
+
.maplibregl-ctrl-attrib.maplibregl-compact-show
|
|
403
|
+
.maplibregl-ctrl-attrib-button {
|
|
404
|
+
background-color: rgb(0 0 0/5%);
|
|
459
405
|
}
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
406
|
+
.maplibregl-ctrl-bottom-right
|
|
407
|
+
> .maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
408
|
+
bottom: 0;
|
|
409
|
+
right: 0;
|
|
464
410
|
}
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
411
|
+
.maplibregl-ctrl-top-right
|
|
412
|
+
> .maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
413
|
+
right: 0;
|
|
414
|
+
top: 0;
|
|
469
415
|
}
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
top: 0
|
|
416
|
+
.maplibregl-ctrl-top-left > .maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
417
|
+
left: 0;
|
|
418
|
+
top: 0;
|
|
474
419
|
}
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
420
|
+
.maplibregl-ctrl-bottom-left
|
|
421
|
+
> .maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
422
|
+
bottom: 0;
|
|
423
|
+
left: 0;
|
|
479
424
|
}
|
|
480
425
|
}
|
|
481
|
-
|
|
482
|
-
@media screen and (-ms-high-contrast:active) {
|
|
426
|
+
@media screen and (-ms-high-contrast: active) {
|
|
483
427
|
.maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
484
|
-
|
|
428
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' fill-rule='evenodd' viewBox='0 0 20 20'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");
|
|
485
429
|
}
|
|
486
430
|
}
|
|
487
|
-
|
|
488
|
-
@media screen and (-ms-high-contrast:black-on-white) {
|
|
431
|
+
@media screen and (-ms-high-contrast: black-on-white) {
|
|
489
432
|
.maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
490
|
-
|
|
433
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill-rule='evenodd' viewBox='0 0 20 20'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");
|
|
491
434
|
}
|
|
492
435
|
}
|
|
493
|
-
|
|
494
436
|
.maplibregl-ctrl-attrib a {
|
|
495
|
-
color: rgba(0, 0, 0, .75);
|
|
496
|
-
text-decoration: none
|
|
437
|
+
color: rgba(0, 0, 0, 0.75);
|
|
438
|
+
text-decoration: none;
|
|
497
439
|
}
|
|
498
|
-
|
|
499
440
|
.maplibregl-ctrl-attrib a:hover {
|
|
500
441
|
color: inherit;
|
|
501
|
-
text-decoration: underline
|
|
442
|
+
text-decoration: underline;
|
|
502
443
|
}
|
|
503
|
-
|
|
504
444
|
.maplibregl-attrib-empty {
|
|
505
|
-
display: none
|
|
445
|
+
display: none;
|
|
506
446
|
}
|
|
507
|
-
|
|
508
447
|
.maplibregl-ctrl-scale {
|
|
509
|
-
background-color: hsla(0, 0%, 100%, .75);
|
|
448
|
+
background-color: hsla(0, 0%, 100%, 0.75);
|
|
510
449
|
border: 2px solid #333;
|
|
511
450
|
border-top: #333;
|
|
512
451
|
box-sizing: border-box;
|
|
513
452
|
color: #333;
|
|
514
453
|
font-size: 10px;
|
|
515
|
-
padding: 0 5px
|
|
454
|
+
padding: 0 5px;
|
|
516
455
|
}
|
|
517
|
-
|
|
518
456
|
.maplibregl-popup {
|
|
519
457
|
display: flex;
|
|
520
458
|
left: 0;
|
|
521
459
|
pointer-events: none;
|
|
522
460
|
position: absolute;
|
|
523
461
|
top: 0;
|
|
524
|
-
will-change: transform
|
|
462
|
+
will-change: transform;
|
|
525
463
|
}
|
|
526
|
-
|
|
527
464
|
.maplibregl-popup-anchor-top,
|
|
528
465
|
.maplibregl-popup-anchor-top-left,
|
|
529
466
|
.maplibregl-popup-anchor-top-right {
|
|
530
|
-
flex-direction: column
|
|
467
|
+
flex-direction: column;
|
|
531
468
|
}
|
|
532
|
-
|
|
533
469
|
.maplibregl-popup-anchor-bottom,
|
|
534
470
|
.maplibregl-popup-anchor-bottom-left,
|
|
535
471
|
.maplibregl-popup-anchor-bottom-right {
|
|
536
|
-
flex-direction: column-reverse
|
|
472
|
+
flex-direction: column-reverse;
|
|
537
473
|
}
|
|
538
|
-
|
|
539
474
|
.maplibregl-popup-anchor-left {
|
|
540
|
-
flex-direction: row
|
|
475
|
+
flex-direction: row;
|
|
541
476
|
}
|
|
542
|
-
|
|
543
477
|
.maplibregl-popup-anchor-right {
|
|
544
|
-
flex-direction: row-reverse
|
|
478
|
+
flex-direction: row-reverse;
|
|
545
479
|
}
|
|
546
|
-
|
|
547
480
|
.maplibregl-popup-tip {
|
|
548
481
|
border: 10px solid transparent;
|
|
549
482
|
height: 0;
|
|
550
483
|
width: 0;
|
|
551
|
-
z-index: 1
|
|
484
|
+
z-index: 1;
|
|
552
485
|
}
|
|
553
|
-
|
|
554
486
|
.maplibregl-popup-anchor-top .maplibregl-popup-tip {
|
|
555
487
|
align-self: center;
|
|
556
488
|
border-bottom-color: #fff;
|
|
557
|
-
border-top: none
|
|
489
|
+
border-top: none;
|
|
558
490
|
}
|
|
559
|
-
|
|
560
491
|
.maplibregl-popup-anchor-top-left .maplibregl-popup-tip {
|
|
561
492
|
align-self: flex-start;
|
|
562
493
|
border-bottom-color: #fff;
|
|
563
494
|
border-left: none;
|
|
564
|
-
border-top: none
|
|
495
|
+
border-top: none;
|
|
565
496
|
}
|
|
566
|
-
|
|
567
497
|
.maplibregl-popup-anchor-top-right .maplibregl-popup-tip {
|
|
568
498
|
align-self: flex-end;
|
|
569
499
|
border-bottom-color: #fff;
|
|
570
500
|
border-right: none;
|
|
571
|
-
border-top: none
|
|
501
|
+
border-top: none;
|
|
572
502
|
}
|
|
573
|
-
|
|
574
503
|
.maplibregl-popup-anchor-bottom .maplibregl-popup-tip {
|
|
575
504
|
align-self: center;
|
|
576
505
|
border-bottom: none;
|
|
577
|
-
border-top-color: #fff
|
|
506
|
+
border-top-color: #fff;
|
|
578
507
|
}
|
|
579
|
-
|
|
580
508
|
.maplibregl-popup-anchor-bottom-left .maplibregl-popup-tip {
|
|
581
509
|
align-self: flex-start;
|
|
582
510
|
border-bottom: none;
|
|
583
511
|
border-left: none;
|
|
584
|
-
border-top-color: #fff
|
|
512
|
+
border-top-color: #fff;
|
|
585
513
|
}
|
|
586
|
-
|
|
587
514
|
.maplibregl-popup-anchor-bottom-right .maplibregl-popup-tip {
|
|
588
515
|
align-self: flex-end;
|
|
589
516
|
border-bottom: none;
|
|
590
517
|
border-right: none;
|
|
591
|
-
border-top-color: #fff
|
|
518
|
+
border-top-color: #fff;
|
|
592
519
|
}
|
|
593
|
-
|
|
594
520
|
.maplibregl-popup-anchor-left .maplibregl-popup-tip {
|
|
595
521
|
align-self: center;
|
|
596
522
|
border-left: none;
|
|
597
|
-
border-right-color: #fff
|
|
523
|
+
border-right-color: #fff;
|
|
598
524
|
}
|
|
599
|
-
|
|
600
525
|
.maplibregl-popup-anchor-right .maplibregl-popup-tip {
|
|
601
526
|
align-self: center;
|
|
602
527
|
border-left-color: #fff;
|
|
603
|
-
border-right: none
|
|
528
|
+
border-right: none;
|
|
604
529
|
}
|
|
605
|
-
|
|
606
530
|
.maplibregl-popup-close-button {
|
|
607
531
|
background-color: transparent;
|
|
608
532
|
border: 0;
|
|
@@ -610,142 +534,119 @@ a.maplibregl-ctrl-logo.maplibregl-compact {
|
|
|
610
534
|
cursor: pointer;
|
|
611
535
|
position: absolute;
|
|
612
536
|
right: 0;
|
|
613
|
-
top: 0
|
|
537
|
+
top: 0;
|
|
614
538
|
}
|
|
615
|
-
|
|
616
539
|
.maplibregl-popup-close-button:hover {
|
|
617
|
-
background-color: rgb(0 0 0/5%)
|
|
540
|
+
background-color: rgb(0 0 0/5%);
|
|
618
541
|
}
|
|
619
|
-
|
|
620
542
|
.maplibregl-popup-content {
|
|
621
543
|
background: #fff;
|
|
622
544
|
border-radius: 3px;
|
|
623
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
|
|
545
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
624
546
|
padding: 15px 10px;
|
|
625
547
|
pointer-events: auto;
|
|
626
|
-
position: relative
|
|
548
|
+
position: relative;
|
|
549
|
+
word-wrap: break-word !important
|
|
627
550
|
}
|
|
628
|
-
|
|
629
551
|
.maplibregl-popup-anchor-top-left .maplibregl-popup-content {
|
|
630
|
-
border-top-left-radius: 0
|
|
552
|
+
border-top-left-radius: 0;
|
|
631
553
|
}
|
|
632
|
-
|
|
633
554
|
.maplibregl-popup-anchor-top-right .maplibregl-popup-content {
|
|
634
|
-
border-top-right-radius: 0
|
|
555
|
+
border-top-right-radius: 0;
|
|
635
556
|
}
|
|
636
|
-
|
|
637
557
|
.maplibregl-popup-anchor-bottom-left .maplibregl-popup-content {
|
|
638
|
-
border-bottom-left-radius: 0
|
|
558
|
+
border-bottom-left-radius: 0;
|
|
639
559
|
}
|
|
640
|
-
|
|
641
560
|
.maplibregl-popup-anchor-bottom-right .maplibregl-popup-content {
|
|
642
|
-
border-bottom-right-radius: 0
|
|
561
|
+
border-bottom-right-radius: 0;
|
|
643
562
|
}
|
|
644
|
-
|
|
645
563
|
.maplibregl-popup-track-pointer {
|
|
646
|
-
display: none
|
|
564
|
+
display: none;
|
|
647
565
|
}
|
|
648
|
-
|
|
649
566
|
.maplibregl-popup-track-pointer * {
|
|
650
567
|
pointer-events: none;
|
|
651
|
-
user-select: none
|
|
568
|
+
user-select: none;
|
|
652
569
|
}
|
|
653
|
-
|
|
654
570
|
.maplibregl-map:hover .maplibregl-popup-track-pointer {
|
|
655
|
-
display: flex
|
|
571
|
+
display: flex;
|
|
656
572
|
}
|
|
657
|
-
|
|
658
573
|
.maplibregl-map:active .maplibregl-popup-track-pointer {
|
|
659
|
-
display: none
|
|
574
|
+
display: none;
|
|
660
575
|
}
|
|
661
|
-
|
|
662
576
|
.maplibregl-marker {
|
|
663
577
|
left: 0;
|
|
664
578
|
position: absolute;
|
|
665
579
|
top: 0;
|
|
666
|
-
|
|
667
|
-
will-change: transform
|
|
580
|
+
will-change: transform;
|
|
668
581
|
}
|
|
669
|
-
|
|
670
582
|
.maplibregl-user-location-dot,
|
|
671
583
|
.maplibregl-user-location-dot:before {
|
|
672
584
|
background-color: #1da1f2;
|
|
673
585
|
border-radius: 50%;
|
|
674
586
|
height: 15px;
|
|
675
|
-
width: 15px
|
|
587
|
+
width: 15px;
|
|
676
588
|
}
|
|
677
|
-
|
|
678
589
|
.maplibregl-user-location-dot:before {
|
|
679
590
|
animation: maplibregl-user-location-dot-pulse 2s infinite;
|
|
680
591
|
content: "";
|
|
681
|
-
position: absolute
|
|
592
|
+
position: absolute;
|
|
682
593
|
}
|
|
683
|
-
|
|
684
594
|
.maplibregl-user-location-dot:after {
|
|
685
595
|
border: 2px solid #fff;
|
|
686
596
|
border-radius: 50%;
|
|
687
|
-
box-shadow: 0 0 3px rgba(0, 0, 0, .35);
|
|
597
|
+
box-shadow: 0 0 3px rgba(0, 0, 0, 0.35);
|
|
688
598
|
box-sizing: border-box;
|
|
689
599
|
content: "";
|
|
690
600
|
height: 19px;
|
|
691
601
|
left: -2px;
|
|
692
602
|
position: absolute;
|
|
693
603
|
top: -2px;
|
|
694
|
-
width: 19px
|
|
604
|
+
width: 19px;
|
|
695
605
|
}
|
|
696
|
-
|
|
697
606
|
@keyframes maplibregl-user-location-dot-pulse {
|
|
698
607
|
0% {
|
|
699
|
-
|
|
700
|
-
|
|
608
|
+
opacity: 1;
|
|
609
|
+
transform: scale(1);
|
|
701
610
|
}
|
|
702
|
-
|
|
703
611
|
70% {
|
|
704
|
-
|
|
705
|
-
|
|
612
|
+
opacity: 0;
|
|
613
|
+
transform: scale(3);
|
|
706
614
|
}
|
|
707
|
-
|
|
708
615
|
to {
|
|
709
|
-
|
|
710
|
-
|
|
616
|
+
opacity: 0;
|
|
617
|
+
transform: scale(1);
|
|
711
618
|
}
|
|
712
619
|
}
|
|
713
|
-
|
|
714
620
|
.maplibregl-user-location-dot-stale {
|
|
715
|
-
background-color: #aaa
|
|
621
|
+
background-color: #aaa;
|
|
716
622
|
}
|
|
717
|
-
|
|
718
623
|
.maplibregl-user-location-dot-stale:after {
|
|
719
|
-
display: none
|
|
624
|
+
display: none;
|
|
720
625
|
}
|
|
721
|
-
|
|
722
626
|
.maplibregl-user-location-accuracy-circle {
|
|
723
627
|
background-color: #1da1f233;
|
|
724
628
|
border-radius: 100%;
|
|
725
629
|
height: 1px;
|
|
726
|
-
width: 1px
|
|
630
|
+
width: 1px;
|
|
727
631
|
}
|
|
728
|
-
|
|
729
632
|
.maplibregl-crosshair,
|
|
730
633
|
.maplibregl-crosshair .maplibregl-interactive,
|
|
731
634
|
.maplibregl-crosshair .maplibregl-interactive:active {
|
|
732
|
-
cursor: crosshair
|
|
635
|
+
cursor: crosshair;
|
|
733
636
|
}
|
|
734
|
-
|
|
735
637
|
.maplibregl-boxzoom {
|
|
736
638
|
background: #fff;
|
|
737
639
|
border: 2px dotted #202020;
|
|
738
640
|
height: 0;
|
|
739
641
|
left: 0;
|
|
740
|
-
opacity: .5;
|
|
642
|
+
opacity: 0.5;
|
|
741
643
|
position: absolute;
|
|
742
644
|
top: 0;
|
|
743
|
-
width: 0
|
|
645
|
+
width: 0;
|
|
744
646
|
}
|
|
745
|
-
|
|
746
647
|
.maplibregl-cooperative-gesture-screen {
|
|
747
648
|
align-items: center;
|
|
748
|
-
background: rgba(0, 0, 0, .4);
|
|
649
|
+
background: rgba(0, 0, 0, 0.4);
|
|
749
650
|
color: #fff;
|
|
750
651
|
display: flex;
|
|
751
652
|
font-size: 1.4em;
|
|
@@ -757,36 +658,775 @@ a.maplibregl-ctrl-logo.maplibregl-compact {
|
|
|
757
658
|
pointer-events: none;
|
|
758
659
|
position: absolute;
|
|
759
660
|
transition: opacity 1s ease 1s;
|
|
760
|
-
z-index: 99999
|
|
661
|
+
z-index: 99999;
|
|
761
662
|
}
|
|
762
|
-
|
|
763
663
|
.maplibregl-cooperative-gesture-screen.maplibregl-show {
|
|
764
664
|
opacity: 1;
|
|
765
|
-
transition: opacity .05s
|
|
665
|
+
transition: opacity 0.05s;
|
|
766
666
|
}
|
|
767
|
-
|
|
768
667
|
.maplibregl-cooperative-gesture-screen .maplibregl-mobile-message {
|
|
769
|
-
display: none
|
|
668
|
+
display: none;
|
|
770
669
|
}
|
|
771
|
-
|
|
772
|
-
@media (hover:none),
|
|
773
|
-
(width <=480px) {
|
|
670
|
+
@media (hover: none), (width <= 480px) {
|
|
774
671
|
.maplibregl-cooperative-gesture-screen .maplibregl-desktop-message {
|
|
775
|
-
|
|
672
|
+
display: none;
|
|
776
673
|
}
|
|
777
|
-
|
|
778
674
|
.maplibregl-cooperative-gesture-screen .maplibregl-mobile-message {
|
|
779
|
-
|
|
675
|
+
display: block;
|
|
780
676
|
}
|
|
781
677
|
}
|
|
782
|
-
|
|
783
678
|
.maplibregl-pseudo-fullscreen {
|
|
784
679
|
height: 100% !important;
|
|
785
680
|
left: 0 !important;
|
|
786
681
|
position: fixed !important;
|
|
787
682
|
top: 0 !important;
|
|
788
683
|
width: 100% !important;
|
|
789
|
-
z-index: 99999
|
|
684
|
+
z-index: 99999;
|
|
685
|
+
}
|
|
686
|
+
.basemap-group {
|
|
687
|
+
font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
|
688
|
+
font-weight: 600;
|
|
689
|
+
position: absolute;
|
|
690
|
+
bottom: 65px;
|
|
691
|
+
right: 10px;
|
|
692
|
+
display: grid;
|
|
693
|
+
grid-template-columns: repeat(2, 51px); /* 2 columnas con igual anchura */
|
|
694
|
+
grid-gap: 5px; /* Espaciado entre los elementos */
|
|
695
|
+
z-index: 1;
|
|
696
|
+
border-radius: 5px;
|
|
697
|
+
width: 120px;
|
|
698
|
+
color: #fff;
|
|
699
|
+
/* background-color: #ffffff73; */
|
|
700
|
+
}
|
|
701
|
+
.basemap-item {
|
|
702
|
+
width: 50px; /* Ajusta la mida segons necessitat */
|
|
703
|
+
height: 50px; /* Ajusta la mida segons necessitat */
|
|
704
|
+
background-size: cover;
|
|
705
|
+
background-position: center;
|
|
706
|
+
margin-right: 3px; /* Espai entre elements, ajusta segons necessitat */
|
|
707
|
+
cursor: pointer;
|
|
708
|
+
border-radius: 25px;
|
|
709
|
+
}
|
|
710
|
+
.basemap-item:hover{
|
|
711
|
+
outline-width: 1px;
|
|
712
|
+
outline-color: white;
|
|
713
|
+
outline-style:groove;
|
|
714
|
+
border-radius: 5px;
|
|
715
|
+
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
.maplibregl-ctrl-bottom-left .maplibregl-ctrl-group {
|
|
719
|
+
border-radius: 50px;
|
|
720
|
+
}
|
|
721
|
+
.maplibregl-ctrl-bottom-right .maplibregl-ctrl-group {
|
|
722
|
+
border-radius: 50px;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.maplibregl-ctrl-bottom-left .maplibregl-ctrl-icon-control-pitch {
|
|
726
|
+
border-radius: 50px;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
.maplibregl-ctrl-bottom-right .maplibregl-ctrl-icon-control-pitch {
|
|
730
|
+
border-radius: 50px;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.maplibregl-ctrl-bottom-left
|
|
734
|
+
.maplibregl-ctrl-icon-maplibregl-ctrl-pitchtoggle-3d {
|
|
735
|
+
border-radius: 50px;
|
|
736
|
+
}
|
|
737
|
+
.maplibregl-ctrl-bottom-right
|
|
738
|
+
.maplibregl-ctrl-icon-maplibregl-ctrl-pitchtoggle-3d {
|
|
739
|
+
border-radius: 50px;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
.filter-group {
|
|
745
|
+
font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
|
746
|
+
font-weight: 600;
|
|
747
|
+
position: absolute;
|
|
748
|
+
top: 10px;
|
|
749
|
+
left: 10px;
|
|
750
|
+
z-index: 1;
|
|
751
|
+
border-radius: 3px;
|
|
752
|
+
width: auto;
|
|
753
|
+
color: #fff;
|
|
754
|
+
overflow-y: auto;
|
|
755
|
+
max-height: 500px;
|
|
756
|
+
overflow-x: hidden;
|
|
757
|
+
}
|
|
758
|
+
.filter-group::-webkit-scrollbar {
|
|
759
|
+
width: 8px; /* Tamaño del scroll en vertical */
|
|
760
|
+
height: 8px; /* Tamaño del scroll en horizontal */
|
|
761
|
+
display: block; /* Ocultar scroll */
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
/* Ponemos un color de fondo y redondeamos las esquinas del thumb */
|
|
765
|
+
.filter-group::-webkit-scrollbar-thumb {
|
|
766
|
+
background: #ccc;
|
|
767
|
+
border-radius: 4px;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
/* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
|
|
771
|
+
.filter-group::-webkit-scrollbar-thumb:hover {
|
|
772
|
+
background: #daac56;
|
|
773
|
+
box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
/* Cambiamos el fondo cuando esté en active */
|
|
777
|
+
.filter-group::-webkit-scrollbar-thumb:active {
|
|
778
|
+
background-color: #d8b97f;
|
|
779
|
+
}
|
|
780
|
+
/* Ponemos un color de fondo y redondeamos las esquinas del track */
|
|
781
|
+
.filter-group::-webkit-scrollbar-track {
|
|
782
|
+
background: #e1e1e1;
|
|
783
|
+
border-radius: 4px;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
/* Cambiamos el fondo cuando esté en active o hover */
|
|
787
|
+
.filter-group::-webkit-scrollbar-track:hover,
|
|
788
|
+
.filter-group::-webkit-scrollbar-track:active {
|
|
789
|
+
background: #d4d4d4;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
.filter-group input[type='checkbox']:first-child + label {
|
|
796
|
+
border-radius: 3px 3px 0 0;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.filter-group label:last-child {
|
|
800
|
+
border-radius: 0 0 3px 3px;
|
|
801
|
+
border: none;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.filter-group input[type='checkbox'] {
|
|
805
|
+
display: none;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
.filter-group input[type='checkbox'] + label {
|
|
809
|
+
background-color: #798e9f;
|
|
810
|
+
display: block;
|
|
811
|
+
cursor: pointer;
|
|
812
|
+
padding: 7px;
|
|
813
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.25);
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.filter-group input[type='checkbox'] + label {
|
|
817
|
+
background-color: #798e9f;
|
|
818
|
+
text-transform: capitalize;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
.filter-group input[type='checkbox'] + label:hover,
|
|
822
|
+
.filter-group input[type='checkbox']:checked + label {
|
|
823
|
+
background-color: #798e9f;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
.filter-group input[type='checkbox']:checked + label:before {
|
|
827
|
+
content: '✔';
|
|
828
|
+
margin-right: 5px;
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
|
|
834
|
+
background-size: 70%;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.maplibregl-ctrl
|
|
838
|
+
button.maplibregl-ctrl-geolocate:disabled
|
|
839
|
+
.maplibregl-ctrl-icon {
|
|
840
|
+
background-image: url("data:image/svg+xml,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z'/%3E%3C/svg%3E");
|
|
841
|
+
fill: #000;
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.maplibregl-ctrl-compass {
|
|
845
|
+
cursor: pointer !important;
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
.maplibregl-ctrl-bottom-left .maplibregl-ctrl-group {
|
|
851
|
+
border-radius: 50px;
|
|
852
|
+
}
|
|
853
|
+
.maplibregl-ctrl-bottom-right .maplibregl-ctrl-group {
|
|
854
|
+
border-radius: 50px;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
.maplibregl-ctrl-bottom-left .maplibregl-ctrl-icon-control-pitch {
|
|
858
|
+
border-radius: 50px;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
.maplibregl-ctrl-bottom-right .maplibregl-ctrl-icon-control-pitch {
|
|
862
|
+
border-radius: 50px;
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
.maplibregl-ctrl-bottom-left
|
|
866
|
+
.maplibregl-ctrl-icon-maplibregl-ctrl-pitchtoggle-3d {
|
|
867
|
+
border-radius: 50px;
|
|
868
|
+
}
|
|
869
|
+
.maplibregl-ctrl-bottom-right
|
|
870
|
+
.maplibregl-ctrl-icon-maplibregl-ctrl-pitchtoggle-3d {
|
|
871
|
+
border-radius: 50px;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
.maplibregl-ctrl-pitchtoggle-3d {
|
|
875
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCI+ICAgIDx0ZXh0IHg9IjUwJSIgeT0iNTAlIiBkeT0iLjM1ZW0iIHN0eWxlPSJmb250LXNpemU6IDE0cHg7IGZvbnQtZmFtaWx5OiAnSGVsdmV0aWNhIE5ldWUnLEFyaWFsLEhlbHZldGljYSxzYW5zLXNlcmlmOyBmb250LXdlaWdodDogYm9sZDsgdGV4dC1hbmNob3I6IG1pZGRsZTsiPjNEPC90ZXh0Pjwvc3ZnPg==);
|
|
876
|
+
background-repeat: no-repeat;
|
|
877
|
+
background-size: 70%;
|
|
878
|
+
background-position: center;
|
|
879
|
+
width: 5px;
|
|
880
|
+
height: 5px;
|
|
881
|
+
position: relative;
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
.maplibregl-ctrl-pitchtoggle-2d {
|
|
885
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCI+ICAgIDx0ZXh0IHg9IjUwJSIgeT0iNTAlIiBkeT0iLjM1ZW0iIHN0eWxlPSJmb250LXNpemU6IDE0cHg7IGZvbnQtZmFtaWx5OiAnSGVsdmV0aWNhIE5ldWUnLEFyaWFsLEhlbHZldGljYSxzYW5zLXNlcmlmOyBmb250LXdlaWdodDogYm9sZDsgdGV4dC1hbmNob3I6IG1pZGRsZTsiPjJEPC90ZXh0Pjwvc3ZnPg==);
|
|
886
|
+
background-repeat: no-repeat;
|
|
887
|
+
background-size: 70%;
|
|
888
|
+
background-position: center;
|
|
889
|
+
width: 5px;
|
|
890
|
+
height: 5px;
|
|
891
|
+
position: relative;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
.maplibregl-export-control {
|
|
895
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 16.75H16C15.8011 16.75 15.6103 16.671 15.4697 16.5303C15.329 16.3897 15.25 16.1989 15.25 16C15.25 15.8011 15.329 15.6103 15.4697 15.4697C15.6103 15.329 15.8011 15.25 16 15.25H18C18.3315 15.25 18.6495 15.1183 18.8839 14.8839C19.1183 14.6495 19.25 14.3315 19.25 14V10C19.25 9.66848 19.1183 9.35054 18.8839 9.11612C18.6495 8.8817 18.3315 8.75 18 8.75H6C5.66848 8.75 5.35054 8.8817 5.11612 9.11612C4.8817 9.35054 4.75 9.66848 4.75 10V14C4.75 14.3315 4.8817 14.6495 5.11612 14.8839C5.35054 15.1183 5.66848 15.25 6 15.25H8C8.19891 15.25 8.38968 15.329 8.53033 15.4697C8.67098 15.6103 8.75 15.8011 8.75 16C8.75 16.1989 8.67098 16.3897 8.53033 16.5303C8.38968 16.671 8.19891 16.75 8 16.75H6C5.27065 16.75 4.57118 16.4603 4.05546 15.9445C3.53973 15.4288 3.25 14.7293 3.25 14V10C3.25 9.27065 3.53973 8.57118 4.05546 8.05546C4.57118 7.53973 5.27065 7.25 6 7.25H18C18.7293 7.25 19.4288 7.53973 19.9445 8.05546C20.4603 8.57118 20.75 9.27065 20.75 10V14C20.75 14.7293 20.4603 15.4288 19.9445 15.9445C19.4288 16.4603 18.7293 16.75 18 16.75Z' fill='%23000000'/%3E%3Cpath d='M16 8.75C15.8019 8.74741 15.6126 8.66756 15.4725 8.52747C15.3324 8.38737 15.2526 8.19811 15.25 8V4.75H8.75V8C8.75 8.19891 8.67098 8.38968 8.53033 8.53033C8.38968 8.67098 8.19891 8.75 8 8.75C7.80109 8.75 7.61032 8.67098 7.46967 8.53033C7.32902 8.38968 7.25 8.19891 7.25 8V4.5C7.25 4.16848 7.3817 3.85054 7.61612 3.61612C7.85054 3.3817 8.16848 3.25 8.5 3.25H15.5C15.8315 3.25 16.1495 3.3817 16.3839 3.61612C16.6183 3.85054 16.75 4.16848 16.75 4.5V8C16.7474 8.19811 16.6676 8.38737 16.5275 8.52747C16.3874 8.66756 16.1981 8.74741 16 8.75Z' fill='%23000000'/%3E%3Cpath d='M15.5 20.75H8.5C8.16848 20.75 7.85054 20.6183 7.61612 20.3839C7.3817 20.1495 7.25 19.8315 7.25 19.5V12.5C7.25 12.1685 7.3817 11.8505 7.61612 11.6161C7.85054 11.3817 8.16848 11.25 8.5 11.25H15.5C15.8315 11.25 16.1495 11.3817 16.3839 11.6161C16.6183 11.8505 16.75 12.1685 16.75 12.5V19.5C16.75 19.8315 16.6183 20.1495 16.3839 20.3839C16.1495 20.6183 15.8315 20.75 15.5 20.75ZM8.75 19.25H15.25V12.75H8.75V19.25Z' fill='%23000000'/%3E%3C/svg%3E") !important;
|
|
896
|
+
background-repeat: no-repeat;
|
|
897
|
+
background-size: 65% !important;
|
|
898
|
+
background-position: center;
|
|
899
|
+
width: 5px;
|
|
900
|
+
height: 5px;
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
.maplibregl-export-list {
|
|
904
|
+
padding: 15px;
|
|
905
|
+
}
|
|
906
|
+
.generate-button {
|
|
907
|
+
border-radius: 5px !important;
|
|
908
|
+
background-color: rgb(0, 0, 0, 2%) !important;
|
|
909
|
+
}
|
|
910
|
+
.maplibregl-ctrl button:not(:disabled):hover {
|
|
911
|
+
background-color: rgb(0, 0, 0, 10%) !important;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
|
|
929
|
+
|
|
930
|
+
|
|
931
|
+
|
|
932
|
+
#logos{
|
|
933
|
+
display: flex;
|
|
934
|
+
flex-direction: row;
|
|
935
|
+
bottom: 1px;
|
|
936
|
+
position: absolute;
|
|
937
|
+
left: 10px;
|
|
938
|
+
}
|
|
939
|
+
#marker {
|
|
940
|
+
background-image: url('https://maplibre.org/maplibre-gl-js/docs/assets/washington-monument.jpg');
|
|
941
|
+
background-size: cover;
|
|
942
|
+
width: 50px;
|
|
943
|
+
height: 50px;
|
|
944
|
+
border-radius: 50%;
|
|
945
|
+
cursor: pointer;
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.maplibregl-popup {
|
|
949
|
+
max-width: 200px;
|
|
950
|
+
}
|
|
951
|
+
#basemapSplide{
|
|
952
|
+
position: relative;
|
|
953
|
+
}
|
|
954
|
+
.carousel-container {
|
|
955
|
+
display: flex;
|
|
956
|
+
overflow: hidden;
|
|
957
|
+
width: 100%;
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
.carousel-inner {
|
|
961
|
+
display: flex;
|
|
962
|
+
transition: transform 0.5s ease;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
.carousel-item {
|
|
966
|
+
flex: 0 0 100%;
|
|
967
|
+
margin-right: 10px;
|
|
968
|
+
height: 8rem;
|
|
969
|
+
width: 8rem;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
img {
|
|
973
|
+
width: 100%;
|
|
974
|
+
height: auto;
|
|
975
|
+
}
|
|
976
|
+
#geocoder{
|
|
977
|
+
position: absolute;
|
|
978
|
+
top: 10px;
|
|
979
|
+
left: 40%;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
.no_result {
|
|
983
|
+
margin: 0.3rem;
|
|
984
|
+
padding: 0.3rem 0.5rem;
|
|
985
|
+
list-style: none;
|
|
986
|
+
text-align: left;
|
|
987
|
+
font-size: 1rem;
|
|
988
|
+
color: #212121;
|
|
989
|
+
transition: all 0.1s ease-in-out;
|
|
990
|
+
border-radius: 0.35rem;
|
|
991
|
+
background-color: rgba(255, 255, 255, 1);
|
|
992
|
+
white-space: nowrap;
|
|
993
|
+
overflow: hidden;
|
|
994
|
+
text-overflow: ellipsis;
|
|
995
|
+
transition: all 0.2s ease;
|
|
996
|
+
outline: none;
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
h1 {
|
|
1000
|
+
color: rgba(255, 122, 122, 1);
|
|
1001
|
+
transition: var(--transition-1);
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
h1 > a {
|
|
1005
|
+
text-decoration: none;
|
|
1006
|
+
color: rgba(255, 122, 122, 1);
|
|
1007
|
+
}
|
|
1008
|
+
#autoComplete{
|
|
1009
|
+
|
|
1010
|
+
text-decoration: none;
|
|
1011
|
+
color: rgba(255, 122, 122, 1);
|
|
1012
|
+
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
h1 > a::selection {
|
|
1016
|
+
color: rgb(255, 122, 122);
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
h4 {
|
|
1020
|
+
margin-bottom: 5px;
|
|
1021
|
+
color: #eb6262;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
h4::selection {
|
|
1025
|
+
color: #e45252;
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
.mode {
|
|
1029
|
+
margin-top: 20px;
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
.toggle {
|
|
1033
|
+
display: flex;
|
|
1034
|
+
border: 1px solid #ffc6c6;
|
|
1035
|
+
height: 35px;
|
|
1036
|
+
width: 120px;
|
|
1037
|
+
border-radius: 50px;
|
|
1038
|
+
justify-content: flex-start;
|
|
1039
|
+
align-content: center;
|
|
1040
|
+
transition: var(--transition-2);
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
.toggler {
|
|
1044
|
+
display: grid;
|
|
1045
|
+
cursor: pointer;
|
|
1046
|
+
background-color: rgba(255, 198, 198, 1);
|
|
1047
|
+
color: #fff;
|
|
1048
|
+
height: 25px;
|
|
1049
|
+
width: 60px;
|
|
1050
|
+
border-radius: 50px;
|
|
1051
|
+
margin: 5px;
|
|
1052
|
+
text-align: center;
|
|
1053
|
+
align-content: center;
|
|
1054
|
+
align-self: flex-start;
|
|
1055
|
+
transition: var(--transition-2);
|
|
1056
|
+
user-select: none;
|
|
1057
|
+
-webkit-user-select: none;
|
|
1058
|
+
-moz-user-select: none;
|
|
1059
|
+
-webkit-touch-callout: none;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
.toggler:hover {
|
|
1063
|
+
width: 65px;
|
|
1064
|
+
background-color: rgba(255, 122, 122, 0.7);
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
.toggler::selection {
|
|
1068
|
+
color: #fff;
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
.strict {
|
|
1072
|
+
display: inline;
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
.loose {
|
|
1076
|
+
display: inline;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.selection {
|
|
1080
|
+
margin-top: 25vh;
|
|
1081
|
+
font-size: 2rem;
|
|
1082
|
+
font-weight: bold;
|
|
1083
|
+
color: #ffc6c6;
|
|
1084
|
+
transition: var(--transition-1);
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
.selection::selection {
|
|
1088
|
+
color: #64ceaa;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
@media only screen and (max-width: 600px) {
|
|
1092
|
+
.selection {
|
|
1093
|
+
margin-top: 15vh;
|
|
1094
|
+
}
|
|
1095
|
+
}
|
|
1096
|
+
.coordControl{
|
|
1097
|
+
|
|
1098
|
+
|
|
1099
|
+
bottom: 0;
|
|
1100
|
+
height: auto;
|
|
1101
|
+
margin: 0 auto;
|
|
1102
|
+
padding: 5px;
|
|
1103
|
+
border: 1px solid #cccccc;
|
|
1104
|
+
left: 45%;
|
|
1105
|
+
border: none;
|
|
1106
|
+
border-radius: 3px;
|
|
1107
|
+
font-size: 0.85em;
|
|
1108
|
+
text-align: center;
|
|
1109
|
+
color: #333;
|
|
1110
|
+
background: hsla(0, 0%, 100%, 0.849);
|
|
1111
|
+
}
|
|
1112
|
+
@media (max-width: 700px) {
|
|
1113
|
+
.coordControl{
|
|
1114
|
+
display: none;
|
|
1115
|
+
}
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
|
|
1119
|
+
.maplibregl-compare {
|
|
1120
|
+
background-color: #fff;
|
|
1121
|
+
position: absolute;
|
|
1122
|
+
width: 2px;
|
|
1123
|
+
height: 100%;
|
|
1124
|
+
z-index: 1;
|
|
1125
|
+
}
|
|
1126
|
+
.maplibregl-compare .compare-swiper-vertical {
|
|
1127
|
+
background-color: #3887be;
|
|
1128
|
+
box-shadow: inset 0 0 0 2px #fff;
|
|
1129
|
+
display: inline-block;
|
|
1130
|
+
border-radius: 50%;
|
|
1131
|
+
position: absolute;
|
|
1132
|
+
width: 60px;
|
|
1133
|
+
height: 60px;
|
|
1134
|
+
top: 50%;
|
|
1135
|
+
left: -30px;
|
|
1136
|
+
margin: -30px 1px 0;
|
|
1137
|
+
color: #fff;
|
|
1138
|
+
cursor: ew-resize;
|
|
1139
|
+
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiICAgeG1sbnM6aW5rc2NhcGU9Imh0dHA6Ly93d3cuaW5rc2NhcGUub3JnL25hbWVzcGFjZXMvaW5rc2NhcGUiICAgd2lkdGg9IjYwIiAgIGhlaWdodD0iNjAiICAgdmVyc2lvbj0iMS4xIiAgIHZpZXdCb3g9IjAgMCA2MCA2MCIgICBpZD0ic3ZnNTQzNCIgICBpbmtzY2FwZTp2ZXJzaW9uPSIwLjkxK2RldmVsK29zeG1lbnUgcjEyOTExIiAgIHNvZGlwb2RpOmRvY25hbWU9Imwtci5zdmciPiAgPG1ldGFkYXRhICAgICBpZD0ibWV0YWRhdGE1NDQ0Ij4gICAgPHJkZjpSREY+ICAgICAgPGNjOldvcmsgICAgICAgICByZGY6YWJvdXQ9IiI+ICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3N2Zyt4bWw8L2RjOmZvcm1hdD4gICAgICAgIDxkYzp0eXBlICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPiAgICAgICAgPGRjOnRpdGxlPjwvZGM6dGl0bGU+ICAgICAgPC9jYzpXb3JrPiAgICA8L3JkZjpSREY+ICA8L21ldGFkYXRhPiAgPGRlZnMgICAgIGlkPSJkZWZzNTQ0MiIgLz4gIDxzb2RpcG9kaTpuYW1lZHZpZXcgICAgIHBhZ2Vjb2xvcj0iI2ZmZmZmZiIgICAgIGJvcmRlcmNvbG9yPSIjNjY2NjY2IiAgICAgYm9yZGVyb3BhY2l0eT0iMSIgICAgIG9iamVjdHRvbGVyYW5jZT0iMTAiICAgICBncmlkdG9sZXJhbmNlPSIxMCIgICAgIGd1aWRldG9sZXJhbmNlPSIxMCIgICAgIGlua3NjYXBlOnBhZ2VvcGFjaXR5PSIwIiAgICAgaW5rc2NhcGU6cGFnZXNoYWRvdz0iMiIgICAgIGlua3NjYXBlOndpbmRvdy13aWR0aD0iMTI4NiIgICAgIGlua3NjYXBlOndpbmRvdy1oZWlnaHQ9Ijc1MSIgICAgIGlkPSJuYW1lZHZpZXc1NDQwIiAgICAgc2hvd2dyaWQ9InRydWUiICAgICBpbmtzY2FwZTp6b29tPSI0IiAgICAgaW5rc2NhcGU6Y3g9IjI1Ljg4OTgzMSIgICAgIGlua3NjYXBlOmN5PSIzNC4zODE4MzMiICAgICBpbmtzY2FwZTp3aW5kb3cteD0iMCIgICAgIGlua3NjYXBlOndpbmRvdy15PSIyMyIgICAgIGlua3NjYXBlOndpbmRvdy1tYXhpbWl6ZWQ9IjAiICAgICBpbmtzY2FwZTpjdXJyZW50LWxheWVyPSJzdmc1NDM0IiAgICAgaW5rc2NhcGU6b2JqZWN0LW5vZGVzPSJ0cnVlIiAgICAgaW5rc2NhcGU6c25hcC1zbW9vdGgtbm9kZXM9InRydWUiPiAgICA8aW5rc2NhcGU6Z3JpZCAgICAgICB0eXBlPSJ4eWdyaWQiICAgICAgIGlkPSJncmlkNTk4OSIgLz4gIDwvc29kaXBvZGk6bmFtZWR2aWV3PiAgPHBhdGggICAgIHN0eWxlPSJmaWxsOiNmZmZmZmY7ZmlsbC1ydWxlOmV2ZW5vZGQ7c3Ryb2tlOm5vbmU7c3Ryb2tlLXdpZHRoOjFweDtzdHJva2UtbGluZWNhcDpidXR0O3N0cm9rZS1saW5lam9pbjptaXRlcjtzdHJva2Utb3BhY2l0eToxIiAgICAgZD0iTSAyNSAyNCBMIDE2IDMwIEwgMjUgMzYgTCAyNSAyNCB6IE0gMzUgMjQgTCAzNSAzNiBMIDQ0IDMwIEwgMzUgMjQgeiAiICAgICBpZD0icGF0aDU5OTUiIC8+PC9zdmc+);
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
.maplibregl-compare-horizontal {
|
|
1143
|
+
position: relative;
|
|
1144
|
+
width: 100%;
|
|
1145
|
+
height: 2px;
|
|
1146
|
+
}
|
|
1147
|
+
.maplibregl-compare .compare-swiper-horizontal {
|
|
1148
|
+
background-color: #3887be;
|
|
1149
|
+
box-shadow: inset 0 0 0 2px #fff;
|
|
1150
|
+
display: inline-block;
|
|
1151
|
+
border-radius: 50%;
|
|
1152
|
+
position: absolute;
|
|
1153
|
+
width: 60px;
|
|
1154
|
+
height: 60px;
|
|
1155
|
+
top: 50%;
|
|
1156
|
+
left: 50%;
|
|
1157
|
+
margin: -30px 1px 0;
|
|
1158
|
+
color: #fff;
|
|
1159
|
+
cursor: ns-resize;
|
|
1160
|
+
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiICAgeG1sbnM6aW5rc2NhcGU9Imh0dHA6Ly93d3cuaW5rc2NhcGUub3JnL25hbWVzcGFjZXMvaW5rc2NhcGUiICAgd2lkdGg9IjYwIiAgIGhlaWdodD0iNjAiICAgdmVyc2lvbj0iMS4xIiAgIHZpZXdCb3g9IjAgMCA2MCA2MCIgICBpZD0ic3ZnNTQzNCIgICBpbmtzY2FwZTp2ZXJzaW9uPSIwLjkxK2RldmVsK29zeG1lbnUgcjEyOTExIiAgIHNvZGlwb2RpOmRvY25hbWU9Imwtci5zdmciPiAgPG1ldGFkYXRhICAgICBpZD0ibWV0YWRhdGE1NDQ0Ij4gICAgPHJkZjpSREY+ICAgICAgPGNjOldvcmsgICAgICAgICByZGY6YWJvdXQ9IiI+ICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3N2Zyt4bWw8L2RjOmZvcm1hdD4gICAgICAgIDxkYzp0eXBlICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPiAgICAgICAgPGRjOnRpdGxlPjwvZGM6dGl0bGU+ICAgICAgPC9jYzpXb3JrPiAgICA8L3JkZjpSREY+ICA8L21ldGFkYXRhPiAgPGRlZnMgICAgIGlkPSJkZWZzNTQ0MiIgLz4gIDxzb2RpcG9kaTpuYW1lZHZpZXcgICAgIHBhZ2Vjb2xvcj0iI2ZmZmZmZiIgICAgIGJvcmRlcmNvbG9yPSIjNjY2NjY2IiAgICAgYm9yZGVyb3BhY2l0eT0iMSIgICAgIG9iamVjdHRvbGVyYW5jZT0iMTAiICAgICBncmlkdG9sZXJhbmNlPSIxMCIgICAgIGd1aWRldG9sZXJhbmNlPSIxMCIgICAgIGlua3NjYXBlOnBhZ2VvcGFjaXR5PSIwIiAgICAgaW5rc2NhcGU6cGFnZXNoYWRvdz0iMiIgICAgIGlua3NjYXBlOndpbmRvdy13aWR0aD0iMTI4NiIgICAgIGlua3NjYXBlOndpbmRvdy1oZWlnaHQ9Ijc1MSIgICAgIGlkPSJuYW1lZHZpZXc1NDQwIiAgICAgc2hvd2dyaWQ9InRydWUiICAgICBpbmtzY2FwZTp6b29tPSI0IiAgICAgaW5rc2NhcGU6Y3g9IjI1Ljg4OTgzMSIgICAgIGlua3NjYXBlOmN5PSIzNC4zODE4MzMiICAgICBpbmtzY2FwZTp3aW5kb3cteD0iMCIgICAgIGlua3NjYXBlOndpbmRvdy15PSIyMyIgICAgIGlua3NjYXBlOndpbmRvdy1tYXhpbWl6ZWQ9IjAiICAgICBpbmtzY2FwZTpjdXJyZW50LWxheWVyPSJzdmc1NDM0IiAgICAgaW5rc2NhcGU6b2JqZWN0LW5vZGVzPSJ0cnVlIiAgICAgaW5rc2NhcGU6c25hcC1zbW9vdGgtbm9kZXM9InRydWUiPiAgICA8aW5rc2NhcGU6Z3JpZCAgICAgICB0eXBlPSJ4eWdyaWQiICAgICAgIGlkPSJncmlkNTk4OSIgLz4gIDwvc29kaXBvZGk6bmFtZWR2aWV3PiAgPHBhdGggICAgIHN0eWxlPSJmaWxsOiNmZmZmZmY7ZmlsbC1ydWxlOmV2ZW5vZGQ7c3Ryb2tlOm5vbmU7c3Ryb2tlLXdpZHRoOjFweDtzdHJva2UtbGluZWNhcDpidXR0O3N0cm9rZS1saW5lam9pbjptaXRlcjtzdHJva2Utb3BhY2l0eToxIiAgICAgZD0iTSAyNSAyNCBMIDE2IDMwIEwgMjUgMzYgTCAyNSAyNCB6IE0gMzUgMjQgTCAzNSAzNiBMIDQ0IDMwIEwgMzUgMjQgeiAiICAgICBpZD0icGF0aDU5OTUiIC8+PC9zdmc+);
|
|
1161
|
+
transform: rotate(90deg);
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
.distance-container {
|
|
1165
|
+
position: absolute;
|
|
1166
|
+
top: 0px;
|
|
1167
|
+
left: 45%;
|
|
1168
|
+
z-index: 1;
|
|
1169
|
+
display: flex;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.distance-container > * {
|
|
1173
|
+
line-height: 18px;
|
|
1174
|
+
display: flex;
|
|
1175
|
+
height: 17px;
|
|
1176
|
+
margin: 0 auto;
|
|
1177
|
+
padding: 2px;
|
|
1178
|
+
padding-bottom: 1.5px;
|
|
1179
|
+
left: 45%;
|
|
1180
|
+
border: none;
|
|
1181
|
+
border-radius: 3px;
|
|
1182
|
+
font-size: 12px;
|
|
1183
|
+
text-align: center;
|
|
1184
|
+
color: #222;
|
|
1185
|
+
background: hsla(0, 0%, 100%, 0.849);
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
|
|
1189
|
+
#xButton {
|
|
1190
|
+
width: fit-content;
|
|
1191
|
+
z-index: 1;
|
|
1192
|
+
cursor: pointer;
|
|
1193
|
+
color: #fff;
|
|
1194
|
+
font-size: 14px;
|
|
1195
|
+
line-height: 18px;
|
|
1196
|
+
border-radius: 0px;
|
|
1197
|
+
background-color: crimson;
|
|
1198
|
+
}
|
|
1199
|
+
#xButton:hover{
|
|
1200
|
+
background-color: rgb(126, 12, 12);
|
|
1201
|
+
}
|
|
1202
|
+
#rulerButton {
|
|
1203
|
+
width: 50px;
|
|
1204
|
+
height: 50px;
|
|
1205
|
+
z-index: 1;
|
|
1206
|
+
cursor: pointer;
|
|
1207
|
+
color: #fff;
|
|
1208
|
+
font-size: 14px;
|
|
1209
|
+
line-height: 18px;
|
|
1210
|
+
border-radius: 30px;
|
|
1211
|
+
background-image: url('https://cdn-icons-png.flaticon.com/512/3616/3616051.png');
|
|
1212
|
+
background-color: rgb(255 89 122);
|
|
1213
|
+
background-repeat: no-repeat;
|
|
1214
|
+
background-size: contain;
|
|
1215
|
+
background-position: initial;
|
|
1216
|
+
background-size: 75%;
|
|
1217
|
+
background-position: center;
|
|
1218
|
+
}
|
|
1219
|
+
.maplibregl-export-list{
|
|
1220
|
+
display: none;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
|
|
1224
|
+
/* Basics */
|
|
1225
|
+
.maplibregl-ctrl-geocoder,
|
|
1226
|
+
.maplibregl-ctrl-geocoder *,
|
|
1227
|
+
.maplibregl-ctrl-geocoder *:after,
|
|
1228
|
+
.maplibregl-ctrl-geocoder *:before {
|
|
1229
|
+
box-sizing: border-box;
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
.maplibregl-ctrl-geocoder {
|
|
1233
|
+
font-size: 18px;
|
|
1234
|
+
line-height: 24px;
|
|
1235
|
+
font-family: "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
1236
|
+
position: relative;
|
|
1237
|
+
background-color: #fff;
|
|
1238
|
+
width: 100%;
|
|
1239
|
+
min-width: 240px;
|
|
1240
|
+
z-index: 1;
|
|
1241
|
+
border-radius: 4px;
|
|
1242
|
+
transition: width 0.25s, min-width 0.25s;
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1245
|
+
.maplibregl-ctrl-geocoder--input {
|
|
1246
|
+
font: inherit;
|
|
1247
|
+
width: 100%;
|
|
1248
|
+
border: 0;
|
|
1249
|
+
background-color: transparent;
|
|
1250
|
+
margin: 0;
|
|
1251
|
+
height: 50px;
|
|
1252
|
+
color: #404040; /* fallback */
|
|
1253
|
+
color: rgba(0, 0, 0, 0.75);
|
|
1254
|
+
padding: 6px 45px;
|
|
1255
|
+
text-overflow: ellipsis;
|
|
1256
|
+
white-space: nowrap;
|
|
1257
|
+
overflow: hidden;
|
|
1258
|
+
}
|
|
1259
|
+
|
|
1260
|
+
.maplibregl-ctrl-geocoder--input::-ms-clear {
|
|
1261
|
+
display: none; /* hide input clear button in IE */
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
.maplibregl-ctrl-geocoder--input:focus {
|
|
1265
|
+
color: #404040; /* fallback */
|
|
1266
|
+
color: rgba(0, 0, 0, 0.75);
|
|
1267
|
+
outline: 0;
|
|
1268
|
+
box-shadow: none;
|
|
1269
|
+
outline: thin dotted;
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
.maplibregl-ctrl-geocoder .maplibregl-ctrl-geocoder--pin-right > * {
|
|
1273
|
+
z-index: 2;
|
|
1274
|
+
position: absolute;
|
|
1275
|
+
right: 8px;
|
|
1276
|
+
top: 7px;
|
|
1277
|
+
display: none;
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
.maplibregl-ctrl-geocoder,
|
|
1281
|
+
.maplibregl-ctrl-geocoder .suggestions {
|
|
1282
|
+
box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
/* Collapsed */
|
|
1286
|
+
.maplibregl-ctrl-geocoder.maplibregl-ctrl-geocoder--collapsed {
|
|
1287
|
+
width: 50px;
|
|
1288
|
+
min-width: 50px;
|
|
1289
|
+
transition: width 0.25s, min-width 0.25s;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
/* Suggestions */
|
|
1293
|
+
.maplibregl-ctrl-geocoder .suggestions {
|
|
1294
|
+
background-color: #fff;
|
|
1295
|
+
border-radius: 4px;
|
|
1296
|
+
left: 0;
|
|
1297
|
+
list-style: none;
|
|
1298
|
+
margin: 0;
|
|
1299
|
+
padding: 0;
|
|
1300
|
+
position: absolute;
|
|
1301
|
+
width: 100%;
|
|
1302
|
+
top: 110%; /* fallback */
|
|
1303
|
+
top: calc(100% + 6px);
|
|
1304
|
+
z-index: 1000;
|
|
1305
|
+
overflow: hidden;
|
|
1306
|
+
font-size: 15px;
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
.maplibregl-ctrl-bottom-left .suggestions,
|
|
1310
|
+
.maplibregl-ctrl-bottom-right .suggestions {
|
|
1311
|
+
top: auto;
|
|
1312
|
+
bottom: 100%;
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
.maplibregl-ctrl-geocoder .suggestions > li > a {
|
|
1316
|
+
cursor: default;
|
|
1317
|
+
display: block;
|
|
1318
|
+
padding: 6px 12px;
|
|
1319
|
+
color: #404040;
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
.maplibregl-ctrl-geocoder .suggestions > .active > a,
|
|
1323
|
+
.maplibregl-ctrl-geocoder .suggestions > li > a:hover {
|
|
1324
|
+
color: #404040;
|
|
1325
|
+
background-color: #f3f3f3;
|
|
1326
|
+
text-decoration: none;
|
|
1327
|
+
cursor: pointer;
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
.maplibregl-ctrl-geocoder--suggestion {
|
|
1331
|
+
display: flex;
|
|
1332
|
+
flex-direction: row;
|
|
1333
|
+
align-items: center;
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
.maplibre-ctrl-geocoder--suggestion-icon {
|
|
1337
|
+
min-width: 30px;
|
|
1338
|
+
min-height: 24px;
|
|
1339
|
+
max-width: 30px;
|
|
1340
|
+
max-height: 24px;
|
|
1341
|
+
padding-right: 12px;
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
.maplibregl-ctrl-geocoder--suggestion-info {
|
|
1345
|
+
display: flex;
|
|
1346
|
+
flex-direction: column;
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
.maplibregl-ctrl-geocoder--suggestion-match {
|
|
1350
|
+
font-weight: bold;
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
.maplibregl-ctrl-geocoder--suggestion-title,
|
|
1354
|
+
.maplibregl-ctrl-geocoder--suggestion-address {
|
|
1355
|
+
text-overflow: ellipsis;
|
|
1356
|
+
overflow: hidden;
|
|
1357
|
+
white-space: nowrap;
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
.maplibregl-ctrl-geocoder--result {
|
|
1361
|
+
display: flex;
|
|
1362
|
+
flex-direction: row;
|
|
1363
|
+
align-items: center;
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
.maplibre-ctrl-geocoder--result-icon {
|
|
1367
|
+
min-width: 30px;
|
|
1368
|
+
min-height: 24px;
|
|
1369
|
+
max-width: 30px;
|
|
1370
|
+
max-height: 24px;
|
|
1371
|
+
padding-right: 12px;
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
.maplibregl-ctrl-geocoder--result-title {
|
|
1375
|
+
font-weight: bold;
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
.maplibregl-ctrl-geocoder--result-title,
|
|
1379
|
+
.maplibregl-ctrl-geocoder--result-address {
|
|
1380
|
+
text-overflow: ellipsis;
|
|
1381
|
+
overflow: hidden;
|
|
1382
|
+
white-space: nowrap;
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
/* Icons */
|
|
1386
|
+
.maplibregl-ctrl-geocoder--icon {
|
|
1387
|
+
display: inline-block;
|
|
1388
|
+
vertical-align: middle;
|
|
1389
|
+
speak: none;
|
|
1390
|
+
fill: #757575;
|
|
1391
|
+
top: 15px;
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
.maplibregl-ctrl-geocoder--icon-search {
|
|
1395
|
+
position: absolute;
|
|
1396
|
+
top: 13px;
|
|
1397
|
+
left: 12px;
|
|
1398
|
+
width: 23px;
|
|
1399
|
+
height: 23px;
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
.maplibregl-ctrl-geocoder--button {
|
|
1403
|
+
padding: 0;
|
|
1404
|
+
margin: 0;
|
|
1405
|
+
border: none;
|
|
1406
|
+
cursor: pointer;
|
|
1407
|
+
background: #fff;
|
|
1408
|
+
line-height: 1;
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
.maplibregl-ctrl-geocoder--icon-close {
|
|
1412
|
+
width: 20px;
|
|
1413
|
+
height: 20px;
|
|
1414
|
+
margin-top: 8px;
|
|
1415
|
+
margin-right: 3px;
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
.maplibregl-ctrl-geocoder--button:hover .maplibregl-ctrl-geocoder--icon-close {
|
|
1419
|
+
fill: #909090;
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
.maplibregl-ctrl-geocoder--icon-loading {
|
|
1423
|
+
width: 26px;
|
|
1424
|
+
height: 26px;
|
|
1425
|
+
margin-top: 5px;
|
|
1426
|
+
margin-right: 0px;
|
|
1427
|
+
-moz-animation: rotate 0.8s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
|
|
1428
|
+
-webkit-animation: rotate 0.8s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
|
|
1429
|
+
animation: rotate 0.8s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
|
|
790
1430
|
}
|
|
791
1431
|
|
|
792
1432
|
/* Animation */
|