@yoobic/yobi 8.1.0-71 → 8.1.0-72
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.
|
@@ -203,8 +203,6 @@ null: CSS defaults to use the ltr css, and adds [dir=rtl] selectors to override
|
|
|
203
203
|
/* shadow */
|
|
204
204
|
:host {
|
|
205
205
|
--locate-me-background-color: var(--app-color, #5a30f4);
|
|
206
|
-
/* https://bugzilla.mozilla.org/show_bug.cgi?id=140562 */
|
|
207
|
-
/* stylelint-disable-next-line selector-class-pattern */
|
|
208
206
|
position: relative;
|
|
209
207
|
display: block;
|
|
210
208
|
width: 100%;
|
|
@@ -213,9 +211,14 @@ null: CSS defaults to use the ltr css, and adds [dir=rtl] selectors to override
|
|
|
213
211
|
:host .mapboxgl-map {
|
|
214
212
|
position: relative;
|
|
215
213
|
overflow: hidden;
|
|
216
|
-
font: 12px/20px
|
|
214
|
+
font: 12px/20px var(--font-family, "Lato");
|
|
217
215
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
218
216
|
}
|
|
217
|
+
:host .mapboxgl-canvas {
|
|
218
|
+
position: absolute;
|
|
219
|
+
top: 0;
|
|
220
|
+
left: 0;
|
|
221
|
+
}
|
|
219
222
|
:host .mapboxgl-map:-webkit-full-screen {
|
|
220
223
|
width: 100%;
|
|
221
224
|
height: 100%;
|
|
@@ -224,19 +227,16 @@ null: CSS defaults to use the ltr css, and adds [dir=rtl] selectors to override
|
|
|
224
227
|
background-color: salmon;
|
|
225
228
|
}
|
|
226
229
|
:host .mapboxgl-canvas-container.mapboxgl-interactive,
|
|
227
|
-
:host .mapboxgl-ctrl-group
|
|
228
|
-
cursor: -webkit-grab;
|
|
229
|
-
cursor: -moz-grab;
|
|
230
|
+
:host .mapboxgl-ctrl-group button.mapboxgl-ctrl-compass {
|
|
230
231
|
cursor: grab;
|
|
231
|
-
-moz-user-select: none;
|
|
232
232
|
-webkit-user-select: none;
|
|
233
|
-
-ms-user-select: none;
|
|
234
233
|
user-select: none;
|
|
235
234
|
}
|
|
235
|
+
:host .mapboxgl-canvas-container.mapboxgl-interactive.mapboxgl-track-pointer {
|
|
236
|
+
cursor: pointer;
|
|
237
|
+
}
|
|
236
238
|
:host .mapboxgl-canvas-container.mapboxgl-interactive:active,
|
|
237
|
-
:host .mapboxgl-ctrl-group
|
|
238
|
-
cursor: -webkit-grabbing;
|
|
239
|
-
cursor: -moz-grabbing;
|
|
239
|
+
:host .mapboxgl-ctrl-group button.mapboxgl-ctrl-compass:active {
|
|
240
240
|
cursor: grabbing;
|
|
241
241
|
}
|
|
242
242
|
:host .mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate,
|
|
@@ -251,10 +251,10 @@ null: CSS defaults to use the ltr css, and adds [dir=rtl] selectors to override
|
|
|
251
251
|
:host .mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan .mapboxgl-canvas {
|
|
252
252
|
touch-action: none;
|
|
253
253
|
}
|
|
254
|
-
:host .mapboxgl-ctrl-top-left,
|
|
255
|
-
:host .mapboxgl-ctrl-top-right,
|
|
256
254
|
:host .mapboxgl-ctrl-bottom-left,
|
|
257
|
-
:host .mapboxgl-ctrl-bottom-right
|
|
255
|
+
:host .mapboxgl-ctrl-bottom-right,
|
|
256
|
+
:host .mapboxgl-ctrl-top-left,
|
|
257
|
+
:host .mapboxgl-ctrl-top-right {
|
|
258
258
|
position: absolute;
|
|
259
259
|
z-index: 2;
|
|
260
260
|
pointer-events: none;
|
|
@@ -277,6 +277,7 @@ null: CSS defaults to use the ltr css, and adds [dir=rtl] selectors to override
|
|
|
277
277
|
}
|
|
278
278
|
:host .mapboxgl-ctrl {
|
|
279
279
|
clear: both;
|
|
280
|
+
transform: translate(0);
|
|
280
281
|
pointer-events: auto;
|
|
281
282
|
}
|
|
282
283
|
:host .mapboxgl-ctrl-top-left .mapboxgl-ctrl {
|
|
@@ -296,109 +297,215 @@ null: CSS defaults to use the ltr css, and adds [dir=rtl] selectors to override
|
|
|
296
297
|
margin: 0 10px 10px 0;
|
|
297
298
|
}
|
|
298
299
|
:host .mapboxgl-ctrl-group {
|
|
299
|
-
overflow: hidden;
|
|
300
300
|
background: #fff;
|
|
301
301
|
border-radius: 4px;
|
|
302
|
-
|
|
303
|
-
|
|
302
|
+
}
|
|
303
|
+
:host .mapboxgl-ctrl-group:not(:empty) {
|
|
304
304
|
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
|
|
305
305
|
}
|
|
306
|
-
|
|
306
|
+
@media (-ms-high-contrast: active) {
|
|
307
|
+
:host .mapboxgl-ctrl-group:not(:empty) {
|
|
308
|
+
box-shadow: 0 0 0 2px ButtonText;
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
:host .mapboxgl-ctrl-group button {
|
|
307
312
|
display: block;
|
|
308
313
|
box-sizing: border-box;
|
|
309
|
-
width:
|
|
310
|
-
height:
|
|
314
|
+
width: 29px;
|
|
315
|
+
height: 29px;
|
|
311
316
|
padding: 0;
|
|
317
|
+
overflow: hidden;
|
|
312
318
|
background-color: transparent;
|
|
313
319
|
border: 0;
|
|
314
320
|
outline: none;
|
|
315
321
|
cursor: pointer;
|
|
316
322
|
}
|
|
317
|
-
:host .mapboxgl-ctrl-group
|
|
318
|
-
border-top:
|
|
323
|
+
:host .mapboxgl-ctrl-group button + button {
|
|
324
|
+
border-top: 1px solid #ddd;
|
|
319
325
|
}
|
|
320
|
-
:host .mapboxgl-ctrl
|
|
321
|
-
|
|
322
|
-
|
|
326
|
+
:host .mapboxgl-ctrl button .mapboxgl-ctrl-icon {
|
|
327
|
+
display: block;
|
|
328
|
+
width: 100%;
|
|
329
|
+
height: 100%;
|
|
330
|
+
background-repeat: no-repeat;
|
|
331
|
+
background-position: 50%;
|
|
332
|
+
}
|
|
333
|
+
@media (-ms-high-contrast: active) {
|
|
334
|
+
:host .mapboxgl-ctrl-icon {
|
|
335
|
+
background-color: transparent;
|
|
336
|
+
}
|
|
337
|
+
:host .mapboxgl-ctrl-group button + button {
|
|
338
|
+
border-top: 1px solid ButtonText;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
:host .mapboxgl-ctrl-attrib {
|
|
342
|
+
display: none;
|
|
343
|
+
}
|
|
344
|
+
:host .mapboxgl-ctrl-attrib-button:focus,
|
|
345
|
+
:host .mapboxgl-ctrl-group button:focus {
|
|
346
|
+
box-shadow: 0 0 2px 2px #0096ff;
|
|
347
|
+
}
|
|
348
|
+
:host .mapboxgl-ctrl button:disabled {
|
|
349
|
+
cursor: not-allowed;
|
|
323
350
|
}
|
|
324
|
-
:host .mapboxgl-ctrl
|
|
351
|
+
:host .mapboxgl-ctrl button:disabled .mapboxgl-ctrl-icon {
|
|
352
|
+
opacity: 0.25;
|
|
353
|
+
}
|
|
354
|
+
:host .mapboxgl-ctrl button:not(:disabled):hover {
|
|
325
355
|
background-color: rgba(0, 0, 0, 0.05);
|
|
326
356
|
}
|
|
327
|
-
:host .mapboxgl-ctrl-
|
|
328
|
-
:
|
|
329
|
-
-webkit-font-smoothing: antialiased;
|
|
330
|
-
-moz-osx-font-smoothing: grayscale;
|
|
331
|
-
speak: none;
|
|
357
|
+
:host .mapboxgl-ctrl-group button:focus:focus-visible {
|
|
358
|
+
box-shadow: 0 0 2px 2px #0096ff;
|
|
332
359
|
}
|
|
333
|
-
:host .mapboxgl-ctrl-
|
|
334
|
-
|
|
360
|
+
:host .mapboxgl-ctrl-group button:focus:not(:focus-visible) {
|
|
361
|
+
box-shadow: none;
|
|
335
362
|
}
|
|
336
|
-
:host .mapboxgl-ctrl-
|
|
337
|
-
|
|
363
|
+
:host .mapboxgl-ctrl-group button:focus:first-child {
|
|
364
|
+
border-radius: 4px 4px 0 0;
|
|
338
365
|
}
|
|
339
|
-
:host .mapboxgl-ctrl-
|
|
340
|
-
|
|
366
|
+
:host .mapboxgl-ctrl-group button:focus:last-child {
|
|
367
|
+
border-radius: 0 0 4px 4px;
|
|
341
368
|
}
|
|
342
|
-
:host .mapboxgl-ctrl-
|
|
343
|
-
|
|
369
|
+
:host .mapboxgl-ctrl-group button:focus:only-child {
|
|
370
|
+
border-radius: inherit;
|
|
344
371
|
}
|
|
345
|
-
:host .mapboxgl-ctrl-
|
|
346
|
-
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0
|
|
372
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
|
|
373
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%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");
|
|
347
374
|
}
|
|
348
|
-
:host .mapboxgl-ctrl
|
|
349
|
-
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0
|
|
375
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
|
|
376
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%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");
|
|
350
377
|
}
|
|
351
|
-
|
|
352
|
-
|
|
378
|
+
@media (-ms-high-contrast: active) {
|
|
379
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
|
|
380
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%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");
|
|
381
|
+
}
|
|
382
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
|
|
383
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%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");
|
|
384
|
+
}
|
|
353
385
|
}
|
|
354
|
-
|
|
355
|
-
|
|
386
|
+
@media (-ms-high-contrast: black-on-white) {
|
|
387
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
|
|
388
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%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");
|
|
389
|
+
}
|
|
390
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
|
|
391
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%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");
|
|
392
|
+
}
|
|
356
393
|
}
|
|
357
|
-
:host .mapboxgl-ctrl
|
|
358
|
-
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0
|
|
394
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
|
|
395
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%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");
|
|
359
396
|
}
|
|
360
|
-
:host .mapboxgl-ctrl
|
|
361
|
-
-
|
|
362
|
-
-moz-animation: mapboxgl-spin 2s infinite linear;
|
|
363
|
-
-o-animation: mapboxgl-spin 2s infinite linear;
|
|
364
|
-
-ms-animation: mapboxgl-spin 2s infinite linear;
|
|
365
|
-
animation: mapboxgl-spin 2s infinite linear;
|
|
397
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
|
|
398
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg'%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");
|
|
366
399
|
}
|
|
367
|
-
@
|
|
368
|
-
|
|
369
|
-
|
|
400
|
+
@media (-ms-high-contrast: active) {
|
|
401
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
|
|
402
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%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");
|
|
370
403
|
}
|
|
371
|
-
|
|
372
|
-
|
|
404
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
|
|
405
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%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");
|
|
373
406
|
}
|
|
374
407
|
}
|
|
375
|
-
|
|
376
|
-
|
|
408
|
+
@media (-ms-high-contrast: black-on-white) {
|
|
409
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
|
|
410
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%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");
|
|
411
|
+
}
|
|
412
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
|
|
413
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%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");
|
|
414
|
+
}
|
|
377
415
|
}
|
|
378
|
-
:host .mapboxgl-ctrl-
|
|
379
|
-
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0
|
|
416
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
|
|
417
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E %3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E %3C/svg%3E");
|
|
380
418
|
}
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
419
|
+
@media (-ms-high-contrast: active) {
|
|
420
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
|
|
421
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E %3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23999'/%3E %3C/svg%3E");
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
@media (-ms-high-contrast: black-on-white) {
|
|
425
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
|
|
426
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E %3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E %3C/svg%3E");
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
|
|
430
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23333'%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' display='none'/%3E %3C/svg%3E");
|
|
431
|
+
}
|
|
432
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
|
|
433
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23aaa'%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' fill='red'/%3E %3C/svg%3E");
|
|
434
|
+
}
|
|
435
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active .mapboxgl-ctrl-icon {
|
|
436
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%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' display='none'/%3E %3C/svg%3E");
|
|
437
|
+
}
|
|
438
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error .mapboxgl-ctrl-icon {
|
|
439
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%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' display='none'/%3E %3C/svg%3E");
|
|
440
|
+
}
|
|
441
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background .mapboxgl-ctrl-icon {
|
|
442
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%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' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
|
|
443
|
+
}
|
|
444
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error .mapboxgl-ctrl-icon {
|
|
445
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%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' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
|
|
446
|
+
}
|
|
447
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-waiting .mapboxgl-ctrl-icon {
|
|
448
|
+
animation: mapboxgl-spin 2s linear infinite;
|
|
449
|
+
}
|
|
450
|
+
@media (-ms-high-contrast: active) {
|
|
451
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
|
|
452
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%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' display='none'/%3E %3C/svg%3E");
|
|
453
|
+
}
|
|
454
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
|
|
455
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23999'%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' fill='red'/%3E %3C/svg%3E");
|
|
456
|
+
}
|
|
457
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active .mapboxgl-ctrl-icon {
|
|
458
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%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' display='none'/%3E %3C/svg%3E");
|
|
459
|
+
}
|
|
460
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error .mapboxgl-ctrl-icon {
|
|
461
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%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' display='none'/%3E %3C/svg%3E");
|
|
462
|
+
}
|
|
463
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background .mapboxgl-ctrl-icon {
|
|
464
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%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' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
|
|
465
|
+
}
|
|
466
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error .mapboxgl-ctrl-icon {
|
|
467
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%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' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
@media (-ms-high-contrast: black-on-white) {
|
|
471
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
|
|
472
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23000'%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' display='none'/%3E %3C/svg%3E");
|
|
473
|
+
}
|
|
474
|
+
:host .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
|
|
475
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23666'%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' fill='red'/%3E %3C/svg%3E");
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
@keyframes mapboxgl-spin {
|
|
479
|
+
0% {
|
|
480
|
+
transform: rotate(0deg);
|
|
481
|
+
}
|
|
482
|
+
to {
|
|
483
|
+
transform: rotate(1turn);
|
|
484
|
+
}
|
|
388
485
|
}
|
|
389
486
|
:host a.mapboxgl-ctrl-logo {
|
|
390
487
|
display: block;
|
|
391
|
-
width:
|
|
392
|
-
height:
|
|
393
|
-
margin: 0 0 -
|
|
394
|
-
|
|
488
|
+
width: 88px;
|
|
489
|
+
height: 23px;
|
|
490
|
+
margin: 0 0 -4px -4px;
|
|
491
|
+
overflow: hidden;
|
|
492
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='88' height='23' viewBox='0 0 88 23' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd'%3E %3Cdefs%3E %3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E %3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E %3C/defs%3E %3Cmask id='clip'%3E %3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/mask%3E %3Cg id='outline' opacity='0.3' stroke='%23000' stroke-width='3'%3E %3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E %3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E %3C/g%3E %3Cg id='fill' opacity='0.9' fill='%23fff'%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/g%3E %3C/svg%3E");
|
|
395
493
|
background-repeat: no-repeat;
|
|
396
494
|
cursor: pointer;
|
|
397
495
|
}
|
|
398
496
|
:host a.mapboxgl-ctrl-logo.mapboxgl-compact {
|
|
399
|
-
width:
|
|
400
|
-
|
|
401
|
-
|
|
497
|
+
width: 23px;
|
|
498
|
+
}
|
|
499
|
+
@media (-ms-high-contrast: active) {
|
|
500
|
+
:host a.mapboxgl-ctrl-logo {
|
|
501
|
+
background-color: transparent;
|
|
502
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='88' height='23' viewBox='0 0 88 23' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd'%3E %3Cdefs%3E %3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E %3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E %3C/defs%3E %3Cmask id='clip'%3E %3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/mask%3E %3Cg id='outline' opacity='1' stroke='%23000' stroke-width='3'%3E %3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E %3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E %3C/g%3E %3Cg id='fill' opacity='1' fill='%23fff'%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/g%3E %3C/svg%3E");
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
@media (-ms-high-contrast: black-on-white) {
|
|
506
|
+
:host a.mapboxgl-ctrl-logo {
|
|
507
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='88' height='23' viewBox='0 0 88 23' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd'%3E %3Cdefs%3E %3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E %3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E %3C/defs%3E %3Cmask id='clip'%3E %3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/mask%3E %3Cg id='outline' opacity='1' stroke='%23fff' stroke-width='3' fill='%23fff'%3E %3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E %3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E %3C/g%3E %3Cg id='fill' opacity='1' fill='%23000'%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/g%3E %3C/svg%3E");
|
|
508
|
+
}
|
|
402
509
|
}
|
|
403
510
|
:host .mapboxgl-ctrl.mapboxgl-ctrl-attrib {
|
|
404
511
|
margin: 0;
|
|
@@ -408,30 +515,75 @@ null: CSS defaults to use the ltr css, and adds [dir=rtl] selectors to override
|
|
|
408
515
|
@media screen {
|
|
409
516
|
:host .mapboxgl-ctrl-attrib.mapboxgl-compact {
|
|
410
517
|
position: relative;
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
padding
|
|
414
|
-
padding-bottom: 2px;
|
|
518
|
+
min-height: 20px;
|
|
519
|
+
margin: 10px;
|
|
520
|
+
padding: 2px 24px 2px 0;
|
|
415
521
|
background-color: #fff;
|
|
416
|
-
border-radius:
|
|
417
|
-
visibility: hidden;
|
|
522
|
+
border-radius: 12px;
|
|
418
523
|
}
|
|
419
|
-
:host .mapboxgl-ctrl-attrib.mapboxgl-compact
|
|
524
|
+
:host .mapboxgl-ctrl-attrib.mapboxgl-compact-show {
|
|
525
|
+
padding: 2px 28px 2px 8px;
|
|
420
526
|
visibility: visible;
|
|
421
527
|
}
|
|
422
|
-
:host .mapboxgl-ctrl-attrib.mapboxgl-compact
|
|
528
|
+
:host .mapboxgl-ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact-show,
|
|
529
|
+
:host .mapboxgl-ctrl-top-left > .mapboxgl-ctrl-attrib.mapboxgl-compact-show {
|
|
530
|
+
padding: 2px 8px 2px 28px;
|
|
531
|
+
border-radius: 12px;
|
|
532
|
+
}
|
|
533
|
+
:host .mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner {
|
|
534
|
+
display: none;
|
|
535
|
+
}
|
|
536
|
+
:host .mapboxgl-ctrl-attrib-button {
|
|
423
537
|
position: absolute;
|
|
538
|
+
top: 0;
|
|
424
539
|
right: 0;
|
|
425
|
-
|
|
540
|
+
display: none;
|
|
426
541
|
box-sizing: border-box;
|
|
427
542
|
width: 24px;
|
|
428
543
|
height: 24px;
|
|
429
544
|
background-color: rgba(255, 255, 255, 0.5);
|
|
430
|
-
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'
|
|
545
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%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");
|
|
546
|
+
border: 0;
|
|
431
547
|
border-radius: 12px;
|
|
432
|
-
|
|
548
|
+
outline: none;
|
|
433
549
|
cursor: pointer;
|
|
434
|
-
|
|
550
|
+
}
|
|
551
|
+
:host .mapboxgl-ctrl-bottom-left .mapboxgl-ctrl-attrib-button,
|
|
552
|
+
:host .mapboxgl-ctrl-top-left .mapboxgl-ctrl-attrib-button {
|
|
553
|
+
left: 0;
|
|
554
|
+
}
|
|
555
|
+
:host .mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-inner,
|
|
556
|
+
:host .mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-button {
|
|
557
|
+
display: block;
|
|
558
|
+
}
|
|
559
|
+
:host .mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-button {
|
|
560
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
561
|
+
}
|
|
562
|
+
:host .mapboxgl-ctrl-bottom-right > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
|
|
563
|
+
right: 0;
|
|
564
|
+
bottom: 0;
|
|
565
|
+
}
|
|
566
|
+
:host .mapboxgl-ctrl-top-right > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
|
|
567
|
+
top: 0;
|
|
568
|
+
right: 0;
|
|
569
|
+
}
|
|
570
|
+
:host .mapboxgl-ctrl-top-left > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
|
|
571
|
+
top: 0;
|
|
572
|
+
left: 0;
|
|
573
|
+
}
|
|
574
|
+
:host .mapboxgl-ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
|
|
575
|
+
bottom: 0;
|
|
576
|
+
left: 0;
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
@media screen and (-ms-high-contrast: active) {
|
|
580
|
+
:host .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
|
|
581
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' fill='%23fff'%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");
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
@media screen and (-ms-high-contrast: black-on-white) {
|
|
585
|
+
:host .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
|
|
586
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%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");
|
|
435
587
|
}
|
|
436
588
|
}
|
|
437
589
|
:host .mapboxgl-ctrl-attrib a {
|
|
@@ -444,7 +596,7 @@ null: CSS defaults to use the ltr css, and adds [dir=rtl] selectors to override
|
|
|
444
596
|
}
|
|
445
597
|
:host .mapboxgl-ctrl-attrib .mapbox-improve-map {
|
|
446
598
|
margin-left: 2px;
|
|
447
|
-
font-weight:
|
|
599
|
+
font-weight: 700;
|
|
448
600
|
}
|
|
449
601
|
:host .mapboxgl-attrib-empty {
|
|
450
602
|
display: none;
|
|
@@ -453,17 +605,15 @@ null: CSS defaults to use the ltr css, and adds [dir=rtl] selectors to override
|
|
|
453
605
|
box-sizing: border-box;
|
|
454
606
|
padding: 0 5px;
|
|
455
607
|
color: #333;
|
|
456
|
-
font-size:
|
|
608
|
+
font-size: 10px;
|
|
457
609
|
background-color: rgba(255, 255, 255, 0.75);
|
|
458
|
-
border
|
|
459
|
-
border-
|
|
460
|
-
border-width: medium 2px 2px;
|
|
610
|
+
border: 2px solid #333;
|
|
611
|
+
border-top: #333;
|
|
461
612
|
}
|
|
462
613
|
:host .mapboxgl-popup {
|
|
463
614
|
position: absolute;
|
|
464
615
|
top: 0;
|
|
465
616
|
left: 0;
|
|
466
|
-
display: -webkit-flex;
|
|
467
617
|
display: flex;
|
|
468
618
|
pointer-events: none;
|
|
469
619
|
will-change: transform;
|
|
@@ -471,21 +621,17 @@ null: CSS defaults to use the ltr css, and adds [dir=rtl] selectors to override
|
|
|
471
621
|
:host .mapboxgl-popup-anchor-top,
|
|
472
622
|
:host .mapboxgl-popup-anchor-top-left,
|
|
473
623
|
:host .mapboxgl-popup-anchor-top-right {
|
|
474
|
-
-webkit-flex-direction: column;
|
|
475
624
|
flex-direction: column;
|
|
476
625
|
}
|
|
477
626
|
:host .mapboxgl-popup-anchor-bottom,
|
|
478
627
|
:host .mapboxgl-popup-anchor-bottom-left,
|
|
479
628
|
:host .mapboxgl-popup-anchor-bottom-right {
|
|
480
|
-
-webkit-flex-direction: column-reverse;
|
|
481
629
|
flex-direction: column-reverse;
|
|
482
630
|
}
|
|
483
631
|
:host .mapboxgl-popup-anchor-left {
|
|
484
|
-
-webkit-flex-direction: row;
|
|
485
632
|
flex-direction: row;
|
|
486
633
|
}
|
|
487
634
|
:host .mapboxgl-popup-anchor-right {
|
|
488
|
-
-webkit-flex-direction: row-reverse;
|
|
489
635
|
flex-direction: row-reverse;
|
|
490
636
|
}
|
|
491
637
|
:host .mapboxgl-popup-tip {
|
|
@@ -495,53 +641,45 @@ null: CSS defaults to use the ltr css, and adds [dir=rtl] selectors to override
|
|
|
495
641
|
border: 10px solid transparent;
|
|
496
642
|
}
|
|
497
643
|
:host .mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
|
|
498
|
-
-webkit-align-self: center;
|
|
499
644
|
align-self: center;
|
|
500
645
|
border-top: none;
|
|
501
646
|
border-bottom-color: #fff;
|
|
502
647
|
}
|
|
503
648
|
:host .mapboxgl-popup-anchor-top-left .mapboxgl-popup-tip {
|
|
504
|
-
-webkit-align-self: flex-start;
|
|
505
649
|
align-self: flex-start;
|
|
506
650
|
border-top: none;
|
|
507
651
|
border-bottom-color: #fff;
|
|
508
652
|
border-left: none;
|
|
509
653
|
}
|
|
510
654
|
:host .mapboxgl-popup-anchor-top-right .mapboxgl-popup-tip {
|
|
511
|
-
-webkit-align-self: flex-end;
|
|
512
655
|
align-self: flex-end;
|
|
513
656
|
border-top: none;
|
|
514
657
|
border-right: none;
|
|
515
658
|
border-bottom-color: #fff;
|
|
516
659
|
}
|
|
517
660
|
:host .mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
|
|
518
|
-
-webkit-align-self: center;
|
|
519
661
|
align-self: center;
|
|
520
662
|
border-top-color: #fff;
|
|
521
663
|
border-bottom: none;
|
|
522
664
|
}
|
|
523
665
|
:host .mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-tip {
|
|
524
|
-
-webkit-align-self: flex-start;
|
|
525
666
|
align-self: flex-start;
|
|
526
667
|
border-top-color: #fff;
|
|
527
668
|
border-bottom: none;
|
|
528
669
|
border-left: none;
|
|
529
670
|
}
|
|
530
671
|
:host .mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-tip {
|
|
531
|
-
-webkit-align-self: flex-end;
|
|
532
672
|
align-self: flex-end;
|
|
533
673
|
border-top-color: #fff;
|
|
534
674
|
border-right: none;
|
|
535
675
|
border-bottom: none;
|
|
536
676
|
}
|
|
537
677
|
:host .mapboxgl-popup-anchor-left .mapboxgl-popup-tip {
|
|
538
|
-
-webkit-align-self: center;
|
|
539
678
|
align-self: center;
|
|
540
679
|
border-right-color: #fff;
|
|
541
680
|
border-left: none;
|
|
542
681
|
}
|
|
543
682
|
:host .mapboxgl-popup-anchor-right .mapboxgl-popup-tip {
|
|
544
|
-
-webkit-align-self: center;
|
|
545
683
|
align-self: center;
|
|
546
684
|
border-right: none;
|
|
547
685
|
border-left-color: #fff;
|
|
@@ -563,7 +701,7 @@ null: CSS defaults to use the ltr css, and adds [dir=rtl] selectors to override
|
|
|
563
701
|
padding: 10px 10px 15px;
|
|
564
702
|
background: #fff;
|
|
565
703
|
border-radius: 3px;
|
|
566
|
-
box-shadow: 0
|
|
704
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
567
705
|
pointer-events: auto;
|
|
568
706
|
}
|
|
569
707
|
:host .mapboxgl-popup-anchor-top-left .mapboxgl-popup-content {
|
|
@@ -578,69 +716,68 @@ null: CSS defaults to use the ltr css, and adds [dir=rtl] selectors to override
|
|
|
578
716
|
:host .mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-content {
|
|
579
717
|
border-bottom-right-radius: 0;
|
|
580
718
|
}
|
|
719
|
+
:host .mapboxgl-popup-track-pointer {
|
|
720
|
+
display: none;
|
|
721
|
+
}
|
|
722
|
+
:host .mapboxgl-popup-track-pointer * {
|
|
723
|
+
user-select: none;
|
|
724
|
+
pointer-events: none;
|
|
725
|
+
}
|
|
726
|
+
:host .mapboxgl-map:hover .mapboxgl-popup-track-pointer {
|
|
727
|
+
display: flex;
|
|
728
|
+
}
|
|
729
|
+
:host .mapboxgl-map:active .mapboxgl-popup-track-pointer {
|
|
730
|
+
display: none;
|
|
731
|
+
}
|
|
581
732
|
:host .mapboxgl-marker {
|
|
582
733
|
position: absolute;
|
|
583
734
|
top: 0;
|
|
584
735
|
left: 0;
|
|
736
|
+
opacity: 1;
|
|
737
|
+
transition: opacity 0.2s;
|
|
585
738
|
will-change: transform;
|
|
586
739
|
}
|
|
587
|
-
:host .mapboxgl-user-location-dot
|
|
740
|
+
:host .mapboxgl-user-location-dot,
|
|
741
|
+
:host .mapboxgl-user-location-dot:before {
|
|
588
742
|
width: 15px;
|
|
589
743
|
height: 15px;
|
|
590
744
|
background-color: #1da1f2;
|
|
591
745
|
border-radius: 50%;
|
|
592
|
-
box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
|
|
593
746
|
}
|
|
594
|
-
:host .mapboxgl-user-location-dot
|
|
747
|
+
:host .mapboxgl-user-location-dot:before {
|
|
595
748
|
position: absolute;
|
|
596
|
-
width: 15px;
|
|
597
|
-
height: 15px;
|
|
598
|
-
background-color: #1da1f2;
|
|
599
|
-
border-radius: 50%;
|
|
600
|
-
-webkit-animation: mapboxgl-user-location-dot-pulse 2s infinite;
|
|
601
|
-
-moz-animation: mapboxgl-user-location-dot-pulse 2s infinite;
|
|
602
|
-
-ms-animation: mapboxgl-user-location-dot-pulse 2s infinite;
|
|
603
749
|
animation: mapboxgl-user-location-dot-pulse 2s infinite;
|
|
604
750
|
content: "";
|
|
605
751
|
}
|
|
606
|
-
:host .mapboxgl-user-location-dot
|
|
752
|
+
:host .mapboxgl-user-location-dot:after {
|
|
607
753
|
position: absolute;
|
|
608
754
|
top: -2px;
|
|
609
755
|
left: -2px;
|
|
610
756
|
box-sizing: border-box;
|
|
611
757
|
width: 19px;
|
|
612
758
|
height: 19px;
|
|
613
|
-
border:
|
|
759
|
+
border: 2px solid #fff;
|
|
614
760
|
border-radius: 50%;
|
|
761
|
+
box-shadow: 0 0 3px rgba(0, 0, 0, 0.35);
|
|
615
762
|
content: "";
|
|
616
763
|
}
|
|
617
|
-
|
|
618
|
-
0
|
|
619
|
-
|
|
620
|
-
opacity: 1;
|
|
621
|
-
}
|
|
622
|
-
70% {
|
|
623
|
-
-webkit-transform: scale(3);
|
|
624
|
-
opacity: 0;
|
|
625
|
-
}
|
|
626
|
-
100% {
|
|
627
|
-
-webkit-transform: scale(1);
|
|
628
|
-
opacity: 0;
|
|
629
|
-
}
|
|
764
|
+
:host .mapboxgl-user-location-show-heading .mapboxgl-user-location-heading {
|
|
765
|
+
width: 0;
|
|
766
|
+
height: 0;
|
|
630
767
|
}
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
768
|
+
:host .mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after,
|
|
769
|
+
:host .mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before {
|
|
770
|
+
position: absolute;
|
|
771
|
+
border-bottom: 7.5px solid #4aa1eb;
|
|
772
|
+
content: "";
|
|
773
|
+
}
|
|
774
|
+
:host .mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before {
|
|
775
|
+
border-left: 7.5px solid transparent;
|
|
776
|
+
transform: translateY(-28px) skewY(-20deg);
|
|
777
|
+
}
|
|
778
|
+
:host .mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after {
|
|
779
|
+
border-right: 7.5px solid transparent;
|
|
780
|
+
transform: translate(7.5px, -28px) skewY(20deg);
|
|
644
781
|
}
|
|
645
782
|
@keyframes mapboxgl-user-location-dot-pulse {
|
|
646
783
|
0% {
|
|
@@ -651,7 +788,7 @@ null: CSS defaults to use the ltr css, and adds [dir=rtl] selectors to override
|
|
|
651
788
|
transform: scale(3);
|
|
652
789
|
opacity: 0;
|
|
653
790
|
}
|
|
654
|
-
|
|
791
|
+
to {
|
|
655
792
|
transform: scale(1);
|
|
656
793
|
opacity: 0;
|
|
657
794
|
}
|
|
@@ -659,9 +796,15 @@ null: CSS defaults to use the ltr css, and adds [dir=rtl] selectors to override
|
|
|
659
796
|
:host .mapboxgl-user-location-dot-stale {
|
|
660
797
|
background-color: #aaa;
|
|
661
798
|
}
|
|
662
|
-
:host .mapboxgl-user-location-dot-stale
|
|
799
|
+
:host .mapboxgl-user-location-dot-stale:after {
|
|
663
800
|
display: none;
|
|
664
801
|
}
|
|
802
|
+
:host .mapboxgl-user-location-accuracy-circle {
|
|
803
|
+
width: 1px;
|
|
804
|
+
height: 1px;
|
|
805
|
+
background-color: rgba(29, 161, 242, 0.2);
|
|
806
|
+
border-radius: 100%;
|
|
807
|
+
}
|
|
665
808
|
:host .mapboxgl-crosshair,
|
|
666
809
|
:host .mapboxgl-crosshair .mapboxgl-interactive,
|
|
667
810
|
:host .mapboxgl-crosshair .mapboxgl-interactive:active {
|
|
@@ -674,17 +817,42 @@ null: CSS defaults to use the ltr css, and adds [dir=rtl] selectors to override
|
|
|
674
817
|
width: 0;
|
|
675
818
|
height: 0;
|
|
676
819
|
background: #fff;
|
|
677
|
-
border:
|
|
820
|
+
border: 2px dotted #202020;
|
|
678
821
|
opacity: 0.5;
|
|
679
822
|
}
|
|
680
823
|
@media print {
|
|
681
|
-
:host {
|
|
682
|
-
/* stylelint-disable-next-line selector-class-pattern */
|
|
683
|
-
}
|
|
684
824
|
:host .mapbox-improve-map {
|
|
685
825
|
display: none;
|
|
686
826
|
}
|
|
687
827
|
}
|
|
828
|
+
:host .mapboxgl-scroll-zoom-blocker,
|
|
829
|
+
:host .mapboxgl-touch-pan-blocker {
|
|
830
|
+
position: absolute;
|
|
831
|
+
top: 0;
|
|
832
|
+
left: 0;
|
|
833
|
+
display: flex;
|
|
834
|
+
align-items: center;
|
|
835
|
+
justify-content: center;
|
|
836
|
+
width: 100%;
|
|
837
|
+
height: 100%;
|
|
838
|
+
color: #fff;
|
|
839
|
+
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
|
|
840
|
+
text-align: center;
|
|
841
|
+
background: rgba(0, 0, 0, 0.7);
|
|
842
|
+
opacity: 0;
|
|
843
|
+
transition: opacity 0.75s ease-in-out;
|
|
844
|
+
transition-delay: 1s;
|
|
845
|
+
pointer-events: none;
|
|
846
|
+
}
|
|
847
|
+
:host .mapboxgl-scroll-zoom-blocker-show,
|
|
848
|
+
:host .mapboxgl-touch-pan-blocker-show {
|
|
849
|
+
opacity: 1;
|
|
850
|
+
transition: opacity 0.1s ease-in-out;
|
|
851
|
+
}
|
|
852
|
+
:host .mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page,
|
|
853
|
+
:host .mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page .mapboxgl-canvas {
|
|
854
|
+
touch-action: pan-x pan-y;
|
|
855
|
+
}
|
|
688
856
|
:host .column-container {
|
|
689
857
|
position: relative;
|
|
690
858
|
display: flex;
|