mapicgc-gl-js 0.0.82 → 0.0.83

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.
@@ -1,835 +1,690 @@
1
1
  .maplibregl-map {
2
- font: 12px/20px "Helvetica Neue", Arial, Helvetica, sans-serif;
2
+ -webkit-tap-highlight-color: rgb(0 0 0/0);
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
- position: absolute;
10
8
  left: 0;
9
+ position: absolute;
11
10
  top: 0;
12
11
  }
13
-
14
12
  .maplibregl-map:fullscreen {
15
- width: 100%;
16
13
  height: 100%;
14
+ width: 100%;
17
15
  }
18
-
19
16
  .maplibregl-ctrl-group button.maplibregl-ctrl-compass {
20
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;
22
+ -moz-user-select: none;
23
+ -webkit-user-select: none;
24
+ -ms-user-select: none;
26
25
  user-select: none;
27
26
  }
28
27
 
28
+
29
+
30
+
29
31
  .maplibregl-canvas-container.maplibregl-interactive.maplibregl-track-pointer {
30
32
  cursor: pointer;
31
33
  }
32
-
33
34
  .maplibregl-canvas-container.maplibregl-interactive:active,
34
35
  .maplibregl-ctrl-group button.maplibregl-ctrl-compass:active {
35
36
  cursor: grabbing;
36
37
  }
37
-
38
38
  .maplibregl-canvas-container.maplibregl-touch-zoom-rotate,
39
39
  .maplibregl-canvas-container.maplibregl-touch-zoom-rotate .maplibregl-canvas {
40
40
  touch-action: pan-x pan-y;
41
41
  }
42
-
43
42
  .maplibregl-canvas-container.maplibregl-touch-drag-pan,
44
43
  .maplibregl-canvas-container.maplibregl-touch-drag-pan .maplibregl-canvas {
45
44
  touch-action: pinch-zoom;
46
45
  }
47
-
48
46
  .maplibregl-canvas-container.maplibregl-touch-zoom-rotate.maplibregl-touch-drag-pan,
49
- .maplibregl-canvas-container.maplibregl-touch-zoom-rotate.maplibregl-touch-drag-pan .maplibregl-canvas {
47
+ .maplibregl-canvas-container.maplibregl-touch-zoom-rotate.maplibregl-touch-drag-pan
48
+ .maplibregl-canvas {
50
49
  touch-action: none;
51
50
  }
52
-
53
51
  .maplibregl-canvas-container.maplibregl-touch-drag-pan.maplibregl-cooperative-gestures,
54
- .maplibregl-canvas-container.maplibregl-touch-drag-pan.maplibregl-cooperative-gestures .maplibregl-canvas {
52
+ .maplibregl-canvas-container.maplibregl-touch-drag-pan.maplibregl-cooperative-gestures
53
+ .maplibregl-canvas {
55
54
  touch-action: pan-x pan-y;
56
55
  }
57
-
58
- .maplibregl-ctrl-top-left,
59
- .maplibregl-ctrl-top-right,
60
56
  .maplibregl-ctrl-bottom-left,
61
- .maplibregl-ctrl-bottom-right { position: absolute; pointer-events: none; z-index: 2; }
62
-
63
- .maplibregl-ctrl-top-left { top: 0; left: 0; }
64
-
65
- .maplibregl-ctrl-top-right { top: 0; right: 0; }
66
-
67
- .maplibregl-ctrl-bottom-left { bottom: 0; left: 0; }
68
-
69
- .maplibregl-ctrl-bottom-right { right: 0; bottom: 0; }
70
-
57
+ .maplibregl-ctrl-bottom-right,
58
+ .maplibregl-ctrl-top-left,
59
+ .maplibregl-ctrl-top-right {
60
+ pointer-events: none;
61
+ position: absolute;
62
+ z-index: 2;
63
+ }
64
+ .maplibregl-ctrl-top-left {
65
+ left: 0;
66
+ top: 0;
67
+ }
68
+ .maplibregl-ctrl-top-right {
69
+ right: 0;
70
+ top: 0;
71
+ }
72
+ .maplibregl-ctrl-bottom-left {
73
+ bottom: 0;
74
+ left: 0;
75
+ }
76
+ .maplibregl-ctrl-bottom-right {
77
+ bottom: 0;
78
+ right: 0;
79
+ }
71
80
  .maplibregl-ctrl {
72
81
  clear: both;
73
82
  pointer-events: auto;
74
-
75
- /* workaround for a Safari bug https://github.com/mapbox/mapbox-gl-js/issues/8185 */
76
- transform: translate(0, 0);
83
+ transform: translate(0);
84
+ }
85
+ .maplibregl-ctrl-top-left .maplibregl-ctrl {
86
+ float: left;
87
+ margin: 10px 0 0 10px;
88
+ }
89
+ .maplibregl-ctrl-top-right .maplibregl-ctrl {
90
+ float: right;
91
+ margin: 10px 10px 0 0;
92
+ }
93
+ .maplibregl-ctrl-bottom-left .maplibregl-ctrl {
94
+ float: left;
95
+ margin: 0 0 10px 10px;
96
+ }
97
+ .maplibregl-ctrl-bottom-right .maplibregl-ctrl {
98
+ float: right;
99
+ margin: 0 10px 10px 0;
77
100
  }
78
-
79
- .maplibregl-ctrl-top-left .maplibregl-ctrl { margin: 10px 0 0 10px; float: left; }
80
-
81
- .maplibregl-ctrl-top-right .maplibregl-ctrl { margin: 10px 10px 0 0; float: right; }
82
-
83
- .maplibregl-ctrl-bottom-left .maplibregl-ctrl { margin: 0 0 10px 10px; float: left; }
84
-
85
- .maplibregl-ctrl-bottom-right .maplibregl-ctrl { margin: 0 10px 10px 0; float: right; }
86
-
87
101
  .maplibregl-ctrl-group {
88
- border-radius: 4px;
89
102
  background: #fff;
103
+ border-radius: 4px;
90
104
  }
91
-
92
105
  .maplibregl-ctrl-group:not(:empty) {
93
- box-shadow: 0 0 0 2px rgb(0 0 0 / 10%);
106
+ box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
94
107
  }
95
-
96
108
  @media (-ms-high-contrast: active) {
97
109
  .maplibregl-ctrl-group:not(:empty) {
98
- box-shadow: 0 0 0 2px ButtonText;
110
+ box-shadow: 0 0 0 2px ButtonText;
99
111
  }
100
112
  }
101
-
102
113
  .maplibregl-ctrl-group button {
103
- width: 29px;
104
- height: 29px;
105
- display: block;
106
- padding: 0;
107
- outline: none;
114
+ background-color: transparent;
108
115
  border: 0;
109
116
  box-sizing: border-box;
110
- background-color: transparent;
111
117
  cursor: pointer;
118
+ display: block;
119
+ height: 29px;
120
+ outline: none;
121
+ padding: 0;
122
+ width: 29px;
112
123
  }
113
-
114
124
  .maplibregl-ctrl-group button + button {
115
125
  border-top: 1px solid #ddd;
116
126
  }
117
-
118
127
  .maplibregl-ctrl button .maplibregl-ctrl-icon {
128
+ background-position: 50%;
129
+ background-repeat: no-repeat;
119
130
  display: block;
120
- width: 100%;
121
131
  height: 100%;
122
- background-repeat: no-repeat;
123
- background-position: center center;
132
+ width: 100%;
124
133
  }
125
-
126
134
  @media (-ms-high-contrast: active) {
127
135
  .maplibregl-ctrl-icon {
128
- background-color: transparent;
136
+ background-color: transparent;
129
137
  }
130
-
131
138
  .maplibregl-ctrl-group button + button {
132
- border-top: 1px solid ButtonText;
139
+ border-top: 1px solid ButtonText;
133
140
  }
134
141
  }
135
-
136
- /* https://bugzilla.mozilla.org/show_bug.cgi?id=140562 */
137
142
  .maplibregl-ctrl button::-moz-focus-inner {
138
143
  border: 0;
139
144
  padding: 0;
140
145
  }
141
-
142
146
  .maplibregl-ctrl-attrib-button:focus,
143
147
  .maplibregl-ctrl-group button:focus {
144
- box-shadow: 0 0 2px 2px rgb(0 150 255 / 100%);
148
+ box-shadow: 0 0 2px 2px #0096ff;
145
149
  }
146
-
147
150
  .maplibregl-ctrl button:disabled {
148
151
  cursor: not-allowed;
149
152
  }
150
-
151
153
  .maplibregl-ctrl button:disabled .maplibregl-ctrl-icon {
152
154
  opacity: 0.25;
153
155
  }
154
-
155
156
  .maplibregl-ctrl button:not(:disabled):hover {
156
- background-color: rgb(0 0 0 / 5%);
157
+ background-color: rgb(0 0 0/5%);
157
158
  }
158
-
159
159
  .maplibregl-ctrl-group button:focus:focus-visible {
160
- box-shadow: 0 0 2px 2px rgb(0 150 255 / 100%);
160
+ box-shadow: 0 0 2px 2px #0096ff;
161
161
  }
162
-
163
162
  .maplibregl-ctrl-group button:focus:not(:focus-visible) {
164
163
  box-shadow: none;
165
164
  }
166
-
167
165
  .maplibregl-ctrl-group button:focus:first-child {
168
166
  border-radius: 4px 4px 0 0;
169
167
  }
170
-
171
168
  .maplibregl-ctrl-group button:focus:last-child {
172
169
  border-radius: 0 0 4px 4px;
173
170
  }
174
-
175
171
  .maplibregl-ctrl-group button:focus:only-child {
176
172
  border-radius: inherit;
177
173
  }
178
-
179
174
  .maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
180
- background-image: svg-load("svg/maplibregl-ctrl-zoom-out.svg", fill: #333);
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");
181
176
  }
182
-
183
177
  .maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon {
184
- background-image: svg-load("svg/maplibregl-ctrl-zoom-in.svg", fill: #333);
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");
185
179
  }
186
-
187
180
  @media (-ms-high-contrast: active) {
188
181
  .maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
189
- background-image: svg-load("svg/maplibregl-ctrl-zoom-out.svg", fill: #fff);
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");
190
183
  }
191
-
192
184
  .maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon {
193
- background-image: svg-load("svg/maplibregl-ctrl-zoom-in.svg", fill: #fff);
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");
194
186
  }
195
187
  }
196
-
197
188
  @media (-ms-high-contrast: black-on-white) {
198
189
  .maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
199
- background-image: svg-load("svg/maplibregl-ctrl-zoom-out.svg", fill: #000);
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");
200
191
  }
201
-
202
192
  .maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon {
203
- background-image: svg-load("svg/maplibregl-ctrl-zoom-in.svg", fill: #000);
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");
204
194
  }
205
195
  }
206
-
207
196
  .maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon {
208
- background-image: svg-load("svg/maplibregl-ctrl-fullscreen.svg", fill: #333);
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");
209
198
  }
210
-
211
199
  .maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon {
212
- background-image: svg-load("svg/maplibregl-ctrl-shrink.svg");
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");
213
201
  }
214
-
215
202
  @media (-ms-high-contrast: active) {
216
203
  .maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon {
217
- background-image: svg-load("svg/maplibregl-ctrl-fullscreen.svg", fill: #fff);
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");
218
205
  }
219
-
220
206
  .maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon {
221
- background-image: svg-load("svg/maplibregl-ctrl-shrink.svg", fill: #fff);
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");
222
208
  }
223
209
  }
224
-
225
210
  @media (-ms-high-contrast: black-on-white) {
226
211
  .maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon {
227
- background-image: svg-load("svg/maplibregl-ctrl-fullscreen.svg", fill: #000);
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");
228
213
  }
229
-
230
214
  .maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon {
231
- background-image: svg-load("svg/maplibregl-ctrl-shrink.svg", fill: #000);
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");
232
216
  }
233
217
  }
234
-
235
218
  .maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon {
236
- background-image: svg-load("svg/maplibregl-ctrl-compass.svg", fill: #333);
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");
237
220
  }
238
-
239
221
  @media (-ms-high-contrast: active) {
240
222
  .maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon {
241
- @svg-load ctrl-compass-white url("svg/maplibregl-ctrl-compass.svg") {
242
- fill: #fff;
243
- #south { fill: #999; }
244
- }
245
-
246
- background-image: svg-inline(ctrl-compass-white);
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");
247
224
  }
248
225
  }
249
-
250
226
  @media (-ms-high-contrast: black-on-white) {
251
227
  .maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon {
252
- background-image: svg-load("svg/maplibregl-ctrl-compass.svg", fill: #000);
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");
253
229
  }
254
230
  }
255
-
256
- @svg-load ctrl-terrain url("svg/maplibregl-ctrl-terrain.svg") {
257
- fill: #333;
258
- #stroke { display: none; }
259
- }
260
-
261
- @svg-load ctrl-terrain-enabled url("svg/maplibregl-ctrl-terrain.svg") {
262
- fill: #33b5e5;
263
- #stroke { display: none; }
264
- }
265
-
266
231
  .maplibregl-ctrl button.maplibregl-ctrl-terrain .maplibregl-ctrl-icon {
267
- background-image: svg-inline(ctrl-terrain);
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");
268
233
  }
269
-
270
234
  .maplibregl-ctrl button.maplibregl-ctrl-terrain-enabled .maplibregl-ctrl-icon {
271
- background-image: svg-inline(ctrl-terrain-enabled);
272
- }
273
-
274
- @svg-load ctrl-geolocate url("svg/maplibregl-ctrl-geolocate.svg") {
275
- fill: #333;
276
- #stroke { display: none; }
277
- }
278
-
279
- @svg-load ctrl-geolocate-white url("svg/maplibregl-ctrl-geolocate.svg") {
280
- fill: #fff;
281
- #stroke { display: none; }
282
- }
283
-
284
- @svg-load ctrl-geolocate-black url("svg/maplibregl-ctrl-geolocate.svg") {
285
- fill: #000;
286
- #stroke { display: none; }
287
- }
288
-
289
- @svg-load ctrl-geolocate-disabled url("svg/maplibregl-ctrl-geolocate.svg") {
290
- fill: #aaa;
291
- #stroke { fill: #f00; }
292
- }
293
-
294
- @svg-load ctrl-geolocate-disabled-white url("svg/maplibregl-ctrl-geolocate.svg") {
295
- fill: #999;
296
- #stroke { fill: #f00; }
297
- }
298
-
299
- @svg-load ctrl-geolocate-disabled-black url("svg/maplibregl-ctrl-geolocate.svg") {
300
- fill: #666;
301
- #stroke { fill: #f00; }
302
- }
303
-
304
- @svg-load ctrl-geolocate-active url("svg/maplibregl-ctrl-geolocate.svg") {
305
- fill: #33b5e5;
306
- #stroke { display: none; }
307
- }
308
-
309
- @svg-load ctrl-geolocate-active-error url("svg/maplibregl-ctrl-geolocate.svg") {
310
- fill: #e58978;
311
- #stroke { display: none; }
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");
312
236
  }
313
-
314
- @svg-load ctrl-geolocate-background url("svg/maplibregl-ctrl-geolocate.svg") {
315
- fill: #33b5e5;
316
- #stroke { display: none; }
317
- #dot { display: none; }
318
- }
319
-
320
- @svg-load ctrl-geolocate-background-error url("svg/maplibregl-ctrl-geolocate.svg") {
321
- fill: #e54e33;
322
- #stroke { display: none; }
323
- #dot { display: none; }
324
- }
325
-
326
237
  .maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
327
- background-image: svg-inline(ctrl-geolocate);
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");
328
239
  }
329
-
330
- .maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon {
331
- background-image: svg-inline(ctrl-geolocate-disabled);
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");
332
244
  }
333
-
334
- .maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active .maplibregl-ctrl-icon {
335
- background-image: svg-inline(ctrl-geolocate-active);
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");
336
249
  }
337
-
338
- .maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active-error .maplibregl-ctrl-icon {
339
- background-image: svg-inline(ctrl-geolocate-active-error);
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");
340
254
  }
341
-
342
- .maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background .maplibregl-ctrl-icon {
343
- background-image: svg-inline(ctrl-geolocate-background);
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");
344
259
  }
345
-
346
- .maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background-error .maplibregl-ctrl-icon {
347
- background-image: svg-inline(ctrl-geolocate-background-error);
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");
348
264
  }
349
-
350
- .maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-waiting .maplibregl-ctrl-icon {
351
- animation: maplibregl-spin 2s infinite linear;
265
+ .maplibregl-ctrl
266
+ button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-waiting
267
+ .maplibregl-ctrl-icon {
268
+ animation: maplibregl-spin 2s linear infinite;
352
269
  }
353
-
354
270
  @media (-ms-high-contrast: active) {
355
271
  .maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
356
- background-image: svg-inline(ctrl-geolocate-white);
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");
357
273
  }
358
-
359
- .maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon {
360
- background-image: svg-inline(ctrl-geolocate-disabled-white);
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");
361
278
  }
362
-
363
- .maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active .maplibregl-ctrl-icon {
364
- background-image: svg-inline(ctrl-geolocate-active);
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");
365
283
  }
366
-
367
- .maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active-error .maplibregl-ctrl-icon {
368
- background-image: svg-inline(ctrl-geolocate-active-error);
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");
369
288
  }
370
-
371
- .maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background .maplibregl-ctrl-icon {
372
- background-image: svg-inline(ctrl-geolocate-background);
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");
373
293
  }
374
-
375
- .maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background-error .maplibregl-ctrl-icon {
376
- background-image: svg-inline(ctrl-geolocate-background-error);
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");
377
298
  }
378
299
  }
379
-
380
300
  @media (-ms-high-contrast: black-on-white) {
381
301
  .maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
382
- background-image: svg-inline(ctrl-geolocate-black);
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");
383
303
  }
384
-
385
- .maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon {
386
- background-image: svg-inline(ctrl-geolocate-disabled-black);
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");
387
308
  }
388
309
  }
389
-
390
310
  @keyframes maplibregl-spin {
391
- 0% { transform: rotate(0deg); }
392
- 100% { transform: rotate(360deg); }
311
+ 0% {
312
+ transform: rotate(0deg);
313
+ }
314
+ to {
315
+ transform: rotate(1turn);
316
+ }
393
317
  }
394
-
395
318
  a.maplibregl-ctrl-logo {
396
- width: 88px;
397
- height: 23px;
398
- margin: 0 0 -4px -4px;
399
- display: block;
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");
400
320
  background-repeat: no-repeat;
401
321
  cursor: pointer;
322
+ display: block;
323
+ height: 23px;
324
+ margin: 0 0 -4px -4px;
402
325
  overflow: hidden;
403
- background-image: svg-load("svg/maplibregl-ctrl-logo.svg");
326
+ width: 88px;
404
327
  }
405
-
406
328
  a.maplibregl-ctrl-logo.maplibregl-compact {
407
329
  width: 14px;
408
330
  }
409
-
410
331
  @media (-ms-high-contrast: active) {
411
332
  a.maplibregl-ctrl-logo {
412
- @svg-load ctrl-logo-white url("svg/maplibregl-ctrl-logo.svg") {
413
- #outline { opacity: 1; }
414
- #fill { opacity: 1; }
415
- }
416
-
417
- background-color: transparent;
418
- background-image: svg-inline(ctrl-logo-white);
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");
419
335
  }
420
336
  }
421
-
422
337
  @media (-ms-high-contrast: black-on-white) {
423
338
  a.maplibregl-ctrl-logo {
424
- @svg-load ctrl-logo-black url("svg/maplibregl-ctrl-logo.svg") {
425
- #outline { opacity: 1; fill: #fff; stroke: #fff; }
426
- #fill { opacity: 1; fill: #000; }
427
- }
428
-
429
- background-image: svg-inline(ctrl-logo-black);
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");
430
340
  }
431
341
  }
432
-
433
342
  .maplibregl-ctrl.maplibregl-ctrl-attrib {
434
- padding: 0 5px;
435
- background-color: rgb(255 255 255 / 50%);
343
+ background-color: hsla(0, 0%, 100%, 0.5);
436
344
  margin: 0;
345
+ padding: 0 5px;
437
346
  }
438
-
439
347
  @media screen {
440
348
  .maplibregl-ctrl-attrib.maplibregl-compact {
441
- min-height: 20px;
442
- padding: 2px 24px 2px 0;
443
- margin: 10px;
444
- position: relative;
445
- background-color: #fff;
446
- color: #000;
447
- border-radius: 12px;
448
- box-sizing: content-box;
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;
449
356
  }
450
-
451
357
  .maplibregl-ctrl-attrib.maplibregl-compact-show {
452
- padding: 2px 28px 2px 8px;
453
- visibility: visible;
358
+ padding: 2px 28px 2px 8px;
359
+ visibility: visible;
454
360
  }
455
-
456
- .maplibregl-ctrl-top-left > .maplibregl-ctrl-attrib.maplibregl-compact-show,
457
- .maplibregl-ctrl-bottom-left > .maplibregl-ctrl-attrib.maplibregl-compact-show {
458
- padding: 2px 8px 2px 28px;
459
- border-radius: 12px;
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;
460
366
  }
461
-
462
367
  .maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-inner {
463
- display: none;
368
+ display: none;
464
369
  }
465
-
466
370
  .maplibregl-ctrl-attrib-button {
467
- display: none;
468
- cursor: pointer;
469
- position: absolute;
470
- background-image: svg-load("svg/maplibregl-ctrl-attrib.svg");
471
- background-color: rgb(255 255 255 / 50%);
472
- width: 24px;
473
- height: 24px;
474
- box-sizing: border-box;
475
- border-radius: 12px;
476
- outline: none;
477
- top: 0;
478
- right: 0;
479
- border: 0;
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;
480
384
  }
481
-
482
385
  .maplibregl-ctrl-attrib summary.maplibregl-ctrl-attrib-button {
483
- appearance: none;
484
- list-style: none;
386
+ appearance: none;
387
+ list-style: none;
485
388
  }
486
-
487
- .maplibregl-ctrl-attrib summary.maplibregl-ctrl-attrib-button::-webkit-details-marker {
488
- display: none;
389
+ .maplibregl-ctrl-attrib
390
+ summary.maplibregl-ctrl-attrib-button::-webkit-details-marker {
391
+ display: none;
489
392
  }
490
-
491
- .maplibregl-ctrl-top-left .maplibregl-ctrl-attrib-button,
492
- .maplibregl-ctrl-bottom-left .maplibregl-ctrl-attrib-button {
493
- left: 0;
393
+ .maplibregl-ctrl-bottom-left .maplibregl-ctrl-attrib-button,
394
+ .maplibregl-ctrl-top-left .maplibregl-ctrl-attrib-button {
395
+ left: 0;
494
396
  }
495
-
496
397
  .maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-button,
497
- .maplibregl-ctrl-attrib.maplibregl-compact-show .maplibregl-ctrl-attrib-inner {
498
- display: block;
398
+ .maplibregl-ctrl-attrib.maplibregl-compact-show
399
+ .maplibregl-ctrl-attrib-inner {
400
+ display: block;
499
401
  }
500
-
501
- .maplibregl-ctrl-attrib.maplibregl-compact-show .maplibregl-ctrl-attrib-button {
502
- background-color: rgb(0 0 0 / 5%);
402
+ .maplibregl-ctrl-attrib.maplibregl-compact-show
403
+ .maplibregl-ctrl-attrib-button {
404
+ background-color: rgb(0 0 0/5%);
503
405
  }
504
-
505
- .maplibregl-ctrl-bottom-right > .maplibregl-ctrl-attrib.maplibregl-compact::after {
506
- bottom: 0;
507
- right: 0;
406
+ .maplibregl-ctrl-bottom-right
407
+ > .maplibregl-ctrl-attrib.maplibregl-compact:after {
408
+ bottom: 0;
409
+ right: 0;
508
410
  }
509
-
510
- .maplibregl-ctrl-top-right > .maplibregl-ctrl-attrib.maplibregl-compact::after {
511
- top: 0;
512
- right: 0;
411
+ .maplibregl-ctrl-top-right
412
+ > .maplibregl-ctrl-attrib.maplibregl-compact:after {
413
+ right: 0;
414
+ top: 0;
513
415
  }
514
-
515
- .maplibregl-ctrl-top-left > .maplibregl-ctrl-attrib.maplibregl-compact::after {
516
- top: 0;
517
- left: 0;
416
+ .maplibregl-ctrl-top-left > .maplibregl-ctrl-attrib.maplibregl-compact:after {
417
+ left: 0;
418
+ top: 0;
518
419
  }
519
-
520
- .maplibregl-ctrl-bottom-left > .maplibregl-ctrl-attrib.maplibregl-compact::after {
521
- bottom: 0;
522
- left: 0;
420
+ .maplibregl-ctrl-bottom-left
421
+ > .maplibregl-ctrl-attrib.maplibregl-compact:after {
422
+ bottom: 0;
423
+ left: 0;
523
424
  }
524
425
  }
525
-
526
426
  @media screen and (-ms-high-contrast: active) {
527
- .maplibregl-ctrl-attrib.maplibregl-compact::after {
528
- background-image: svg-load("svg/maplibregl-ctrl-attrib.svg", fill=#fff);
427
+ .maplibregl-ctrl-attrib.maplibregl-compact:after {
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");
529
429
  }
530
430
  }
531
-
532
431
  @media screen and (-ms-high-contrast: black-on-white) {
533
- .maplibregl-ctrl-attrib.maplibregl-compact::after {
534
- background-image: svg-load("svg/maplibregl-ctrl-attrib.svg");
432
+ .maplibregl-ctrl-attrib.maplibregl-compact:after {
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");
535
434
  }
536
435
  }
537
-
538
436
  .maplibregl-ctrl-attrib a {
539
- color: rgb(0 0 0 / 75%);
437
+ color: rgba(0, 0, 0, 0.75);
540
438
  text-decoration: none;
541
439
  }
542
-
543
440
  .maplibregl-ctrl-attrib a:hover {
544
441
  color: inherit;
545
442
  text-decoration: underline;
546
443
  }
547
-
548
444
  .maplibregl-attrib-empty {
549
445
  display: none;
550
446
  }
551
-
552
447
  .maplibregl-ctrl-scale {
553
- background-color: rgb(255 255 255 / 75%);
448
+ background-color: hsla(0, 0%, 100%, 0.75);
449
+ border: 2px solid #333;
450
+ border-top: #333;
451
+ box-sizing: border-box;
452
+ color: #333;
554
453
  font-size: 10px;
555
- border-width: medium 2px 2px;
556
- border-style: none solid solid;
557
- border-color: #333;
558
454
  padding: 0 5px;
559
- color: #333;
560
- box-sizing: border-box;
561
455
  }
562
-
563
456
  .maplibregl-popup {
457
+ display: flex;
458
+ left: 0;
459
+ pointer-events: none;
564
460
  position: absolute;
565
461
  top: 0;
566
- left: 0;
567
- display: flex;
568
462
  will-change: transform;
569
- pointer-events: none;
463
+ z-index: 9999999;
570
464
  }
571
-
572
465
  .maplibregl-popup-anchor-top,
573
466
  .maplibregl-popup-anchor-top-left,
574
467
  .maplibregl-popup-anchor-top-right {
575
468
  flex-direction: column;
576
469
  }
577
-
578
470
  .maplibregl-popup-anchor-bottom,
579
471
  .maplibregl-popup-anchor-bottom-left,
580
472
  .maplibregl-popup-anchor-bottom-right {
581
473
  flex-direction: column-reverse;
582
474
  }
583
-
584
475
  .maplibregl-popup-anchor-left {
585
476
  flex-direction: row;
586
477
  }
587
-
588
478
  .maplibregl-popup-anchor-right {
589
479
  flex-direction: row-reverse;
590
480
  }
591
-
592
481
  .maplibregl-popup-tip {
593
- width: 0;
594
- height: 0;
595
482
  border: 10px solid transparent;
483
+ height: 0;
484
+ width: 0;
596
485
  z-index: 1;
597
486
  }
598
-
599
487
  .maplibregl-popup-anchor-top .maplibregl-popup-tip {
600
488
  align-self: center;
601
- border-top: none;
602
489
  border-bottom-color: #fff;
490
+ border-top: none;
603
491
  }
604
-
605
492
  .maplibregl-popup-anchor-top-left .maplibregl-popup-tip {
606
493
  align-self: flex-start;
607
- border-top: none;
608
- border-left: none;
609
494
  border-bottom-color: #fff;
495
+ border-left: none;
496
+ border-top: none;
610
497
  }
611
-
612
498
  .maplibregl-popup-anchor-top-right .maplibregl-popup-tip {
613
499
  align-self: flex-end;
614
- border-top: none;
615
- border-right: none;
616
500
  border-bottom-color: #fff;
501
+ border-right: none;
502
+ border-top: none;
617
503
  }
618
-
619
504
  .maplibregl-popup-anchor-bottom .maplibregl-popup-tip {
620
505
  align-self: center;
621
506
  border-bottom: none;
622
507
  border-top-color: #fff;
623
508
  }
624
-
625
509
  .maplibregl-popup-anchor-bottom-left .maplibregl-popup-tip {
626
510
  align-self: flex-start;
627
511
  border-bottom: none;
628
512
  border-left: none;
629
513
  border-top-color: #fff;
630
514
  }
631
-
632
515
  .maplibregl-popup-anchor-bottom-right .maplibregl-popup-tip {
633
516
  align-self: flex-end;
634
517
  border-bottom: none;
635
518
  border-right: none;
636
519
  border-top-color: #fff;
637
520
  }
638
-
639
521
  .maplibregl-popup-anchor-left .maplibregl-popup-tip {
640
522
  align-self: center;
641
523
  border-left: none;
642
524
  border-right-color: #fff;
643
525
  }
644
-
645
526
  .maplibregl-popup-anchor-right .maplibregl-popup-tip {
646
527
  align-self: center;
647
- border-right: none;
648
528
  border-left-color: #fff;
529
+ border-right: none;
649
530
  }
650
-
651
531
  .maplibregl-popup-close-button {
652
- position: absolute;
653
- right: 0;
654
- top: 0;
532
+ color: white;
533
+ background-color: transparent;
655
534
  border: 0;
656
535
  border-radius: 0 3px 0 0;
657
536
  cursor: pointer;
658
- background-color: transparent;
537
+ position: absolute;
538
+ right: 0;
539
+ top: 0;
659
540
  }
660
-
661
541
  .maplibregl-popup-close-button:hover {
662
- background-color: rgb(0 0 0 / 5%);
542
+ background-color: rgb(0 0 0/5%);
663
543
  }
664
-
665
544
  .maplibregl-popup-content {
666
- position: relative;
667
545
  background: #fff;
668
546
  border-radius: 3px;
669
- box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
670
- padding: 15px 10px;
547
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
548
+ padding: 0px;
671
549
  pointer-events: auto;
550
+ position: relative;
551
+ word-wrap: break-word !important
672
552
  }
673
-
674
553
  .maplibregl-popup-anchor-top-left .maplibregl-popup-content {
675
554
  border-top-left-radius: 0;
676
555
  }
677
-
678
556
  .maplibregl-popup-anchor-top-right .maplibregl-popup-content {
679
557
  border-top-right-radius: 0;
680
558
  }
681
-
682
559
  .maplibregl-popup-anchor-bottom-left .maplibregl-popup-content {
683
560
  border-bottom-left-radius: 0;
684
561
  }
685
-
686
562
  .maplibregl-popup-anchor-bottom-right .maplibregl-popup-content {
687
563
  border-bottom-right-radius: 0;
688
564
  }
689
-
690
565
  .maplibregl-popup-track-pointer {
691
566
  display: none;
692
567
  }
693
-
694
568
  .maplibregl-popup-track-pointer * {
695
569
  pointer-events: none;
696
570
  user-select: none;
697
571
  }
698
-
699
572
  .maplibregl-map:hover .maplibregl-popup-track-pointer {
700
573
  display: flex;
701
574
  }
702
-
703
575
  .maplibregl-map:active .maplibregl-popup-track-pointer {
704
576
  display: none;
705
577
  }
706
-
707
578
  .maplibregl-marker {
579
+ left: 0;
708
580
  position: absolute;
709
581
  top: 0;
710
- left: 0;
711
582
  will-change: transform;
712
- transition: opacity 0.2s;
713
583
  }
714
-
715
- .maplibregl-user-location-dot {
584
+ .maplibregl-user-location-dot,
585
+ .maplibregl-user-location-dot:before {
716
586
  background-color: #1da1f2;
717
- width: 15px;
718
- height: 15px;
719
587
  border-radius: 50%;
588
+ height: 15px;
589
+ width: 15px;
720
590
  }
721
-
722
- .maplibregl-user-location-dot::before {
723
- background-color: #1da1f2;
591
+ .maplibregl-user-location-dot:before {
592
+ animation: maplibregl-user-location-dot-pulse 2s infinite;
724
593
  content: "";
725
- width: 15px;
726
- height: 15px;
727
- border-radius: 50%;
728
594
  position: absolute;
729
- animation: maplibregl-user-location-dot-pulse 2s infinite;
730
595
  }
731
-
732
- .maplibregl-user-location-dot::after {
733
- border-radius: 50%;
596
+ .maplibregl-user-location-dot:after {
734
597
  border: 2px solid #fff;
598
+ border-radius: 50%;
599
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.35);
600
+ box-sizing: border-box;
735
601
  content: "";
736
602
  height: 19px;
737
603
  left: -2px;
738
604
  position: absolute;
739
605
  top: -2px;
740
606
  width: 19px;
741
- box-sizing: border-box;
742
- box-shadow: 0 0 3px rgb(0 0 0 / 35%);
743
607
  }
744
-
745
608
  @keyframes maplibregl-user-location-dot-pulse {
746
- 0% { transform: scale(1); opacity: 1; }
747
- 70% { transform: scale(3); opacity: 0; }
748
- 100% { transform: scale(1); opacity: 0; }
609
+ 0% {
610
+ opacity: 1;
611
+ transform: scale(1);
612
+ }
613
+ 70% {
614
+ opacity: 0;
615
+ transform: scale(3);
616
+ }
617
+ to {
618
+ opacity: 0;
619
+ transform: scale(1);
620
+ }
749
621
  }
750
-
751
622
  .maplibregl-user-location-dot-stale {
752
623
  background-color: #aaa;
753
624
  }
754
-
755
- .maplibregl-user-location-dot-stale::after {
625
+ .maplibregl-user-location-dot-stale:after {
756
626
  display: none;
757
627
  }
758
-
759
628
  .maplibregl-user-location-accuracy-circle {
760
629
  background-color: #1da1f233;
761
- width: 1px;
762
- height: 1px;
763
630
  border-radius: 100%;
631
+ height: 1px;
632
+ width: 1px;
764
633
  }
765
-
766
634
  .maplibregl-crosshair,
767
635
  .maplibregl-crosshair .maplibregl-interactive,
768
636
  .maplibregl-crosshair .maplibregl-interactive:active {
769
637
  cursor: crosshair;
770
638
  }
771
-
772
639
  .maplibregl-boxzoom {
773
- position: absolute;
774
- top: 0;
775
- left: 0;
776
- width: 0;
777
- height: 0;
778
640
  background: #fff;
779
641
  border: 2px dotted #202020;
642
+ height: 0;
643
+ left: 0;
780
644
  opacity: 0.5;
645
+ position: absolute;
646
+ top: 0;
647
+ width: 0;
781
648
  }
782
-
783
649
  .maplibregl-cooperative-gesture-screen {
784
- background: rgba(0 0 0 / 40%);
785
- position: absolute;
786
- inset: 0;
787
- display: flex;
788
- justify-content: center;
789
650
  align-items: center;
790
- color: white;
791
- padding: 1rem;
651
+ background: rgba(0, 0, 0, 0.4);
652
+ color: #fff;
653
+ display: flex;
792
654
  font-size: 1.4em;
655
+ inset: 0;
656
+ justify-content: center;
793
657
  line-height: 1.2;
794
658
  opacity: 0;
659
+ padding: 1rem;
795
660
  pointer-events: none;
661
+ position: absolute;
796
662
  transition: opacity 1s ease 1s;
797
663
  z-index: 99999;
798
664
  }
799
-
800
665
  .maplibregl-cooperative-gesture-screen.maplibregl-show {
801
666
  opacity: 1;
802
667
  transition: opacity 0.05s;
803
668
  }
804
-
805
669
  .maplibregl-cooperative-gesture-screen .maplibregl-mobile-message {
806
670
  display: none;
807
671
  }
808
-
809
672
  @media (hover: none), (width <= 480px) {
810
673
  .maplibregl-cooperative-gesture-screen .maplibregl-desktop-message {
811
- display: none;
674
+ display: none;
812
675
  }
813
-
814
676
  .maplibregl-cooperative-gesture-screen .maplibregl-mobile-message {
815
- display: block;
677
+ display: block;
816
678
  }
817
679
  }
818
-
819
680
  .maplibregl-pseudo-fullscreen {
820
- position: fixed !important;
821
- width: 100% !important;
822
681
  height: 100% !important;
823
- top: 0 !important;
824
682
  left: 0 !important;
683
+ position: fixed !important;
684
+ top: 0 !important;
685
+ width: 100% !important;
825
686
  z-index: 99999;
826
687
  }
827
-
828
- /*FINS AQUI MAPLIBRE GL JS -----CSS*/
829
-
830
-
831
-
832
-
833
688
  .basemap-group {
834
689
  font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
835
690
  font-weight: 600;
@@ -887,6 +742,8 @@ a.maplibregl-ctrl-logo.maplibregl-compact {
887
742
  border-radius: 50px;
888
743
  }
889
744
 
745
+
746
+
890
747
  .filter-group {
891
748
  font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
892
749
  font-weight: 600;
@@ -935,6 +792,9 @@ a.maplibregl-ctrl-logo.maplibregl-compact {
935
792
  background: #d4d4d4;
936
793
  }
937
794
 
795
+
796
+
797
+
938
798
  .filter-group input[type='checkbox']:first-child + label {
939
799
  border-radius: 3px 3px 0 0;
940
800
  }
@@ -971,6 +831,10 @@ background: #d4d4d4;
971
831
  margin-right: 5px;
972
832
  }
973
833
 
834
+
835
+
836
+
837
+
974
838
  #filter-group {
975
839
  font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
976
840
  font-weight: 600;
@@ -1018,7 +882,8 @@ background: #d4d4d4;
1018
882
  #filter-group::-webkit-scrollbar-track:active {
1019
883
  background: #d4d4d4;
1020
884
  }
1021
-
885
+
886
+
1022
887
 
1023
888
 
1024
889
  #filter-group input[type='checkbox']:first-child + label {
@@ -1148,6 +1013,32 @@ background: #d4d4d4;
1148
1013
 
1149
1014
 
1150
1015
 
1016
+
1017
+
1018
+
1019
+
1020
+
1021
+
1022
+
1023
+
1024
+
1025
+
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+
1034
+
1035
+
1036
+
1037
+
1038
+
1039
+
1040
+
1041
+
1151
1042
  .maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
1152
1043
  background-size: 70%;
1153
1044
  }
@@ -1231,6 +1122,21 @@ background: #d4d4d4;
1231
1122
 
1232
1123
 
1233
1124
 
1125
+
1126
+
1127
+
1128
+
1129
+
1130
+
1131
+
1132
+
1133
+
1134
+
1135
+
1136
+
1137
+
1138
+
1139
+
1234
1140
 
1235
1141
 
1236
1142
  #marker {