@startinblox/core 0.19.22-beta.4 → 0.20.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -5,8 +5,6 @@ var _a2;
5
5
  import { d as defineComponent, u as uniqID, i as importInlineCSS, a as asyncQuerySelector, f as fuzzyCompare, p as parseFieldsString, b as findClosingBracketMatchIndex, c as compare, e as evalTemplateString, g as generalComparator, s as setDeepProperty, t as transformArrayToContainer } from "./helpers-D842zXW3.js";
6
6
  import { h } from "./helpers-D842zXW3.js";
7
7
  import PubSub$1 from "https://cdn.skypack.dev/pubsub-js";
8
- import L$1 from "https://cdn.skypack.dev/leaflet";
9
- import "https://cdn.skypack.dev/leaflet.markercluster";
10
8
  if (!("flat" in Array.prototype)) {
11
9
  Object.defineProperty(Array.prototype, "flat", {
12
10
  configurable: true,
@@ -51302,194 +51300,6 @@ const SolidTable = {
51302
51300
  }, "SolidTable:renderDom")
51303
51301
  };
51304
51302
  Sib.register(SolidTable);
51305
- const SolidMap = {
51306
- name: "solid-map",
51307
- use: [
51308
- WidgetMixin,
51309
- ListMixin,
51310
- StoreMixin,
51311
- GrouperMixin,
51312
- CounterMixin,
51313
- FilterMixin,
51314
- FederationMixin,
51315
- NextMixin
51316
- ],
51317
- attributes: {
51318
- clustering: {
51319
- type: Boolean,
51320
- default: null
51321
- }
51322
- },
51323
- initialState: {
51324
- markers: {
51325
- default: null
51326
- },
51327
- subscriptions: null,
51328
- resetPlanned: false,
51329
- hasBeenResetOnce: false
51330
- },
51331
- created() {
51332
- importInlineCSS("leaflet", () => import("./leaflet-B-Oc5et1.js"));
51333
- importInlineCSS("default-theme", () => import("./default-theme-CYuJ78jz.js"));
51334
- importInlineCSS("marker-cluster", () => import("./MarkerCluster-pBxvH3Oj.js"));
51335
- importInlineCSS("marker-cluster-default", () => import("./MarkerCluster.Default-DBivQAto.js"));
51336
- document.body.addEventListener(
51337
- "navigate",
51338
- () => setTimeout(() => this.isVisible && !this.hasBeenResetOnce && this.reset())
51339
- );
51340
- this.markers = [];
51341
- this.subscriptions = /* @__PURE__ */ new Map();
51342
- },
51343
- get isVisible() {
51344
- return this.element.offsetParent !== null;
51345
- },
51346
- attached() {
51347
- const id2 = uniqID();
51348
- const template = x`
51349
- <div id=${id2} style="width:100%;height:100%;"></div>
51350
- `;
51351
- B(template, this.element);
51352
- const div2 = this.element.querySelector(`#${id2}`);
51353
- this.map = L$1.map(div2);
51354
- L$1.tileLayer(
51355
- "https://{s}.basemaps.cartocdn.com/rastertiles/voyager/{z}/{x}/{y}{r}.png"
51356
- ).addTo(this.map);
51357
- if (this.clustering !== null) {
51358
- this.markersCluster = L$1.markerClusterGroup();
51359
- this.map.addLayer(this.markersCluster);
51360
- }
51361
- },
51362
- reset() {
51363
- if (this.isVisible) {
51364
- this.map.invalidateSize();
51365
- if (this.markers.length) {
51366
- this.map.fitBounds(L$1.featureGroup(this.markers).getBounds());
51367
- } else {
51368
- this.map.fitWorld();
51369
- }
51370
- this.hasBeenResetOnce = true;
51371
- }
51372
- },
51373
- /**
51374
- * Execute a reset only if none is planned already
51375
- */
51376
- planReset() {
51377
- if (!this.resetPlanned) {
51378
- this.resetPlanned = true;
51379
- setTimeout(() => {
51380
- this.reset();
51381
- this.resetPlanned = false;
51382
- });
51383
- }
51384
- },
51385
- dispatchSelect(event) {
51386
- const target2 = event.target;
51387
- const resource = target2["options"].resource;
51388
- this.element.dispatchEvent(
51389
- new CustomEvent("resourceSelect", { detail: { resource } })
51390
- );
51391
- this.goToNext(resource);
51392
- },
51393
- /**
51394
- * Override listMixin method: initialize a marker on the map
51395
- * @param resourceId: id of the resource to display
51396
- * @param groupClass: class of the group of markers
51397
- */
51398
- async appendChildElt(resourceId, groupClass) {
51399
- const resource = await store.getData(resourceId, this.context);
51400
- if (!this.subscriptions.get(resourceId)) {
51401
- this.subscriptions.set(resourceId, PubSub.subscribe(resourceId, () => this.updateDOM()));
51402
- }
51403
- if (!resource) return;
51404
- const lat2 = await resource["lat"];
51405
- const lng = await resource["lng"];
51406
- if (lat2 && lng) {
51407
- const icon = L$1.divIcon({
51408
- // create the icon, doc here: https://leafletjs.com/reference-1.6.0.html#icon
51409
- className: "sib-custom-marker " + groupClass,
51410
- // default class used for styling
51411
- iconSize: [8, 8],
51412
- iconAnchor: [12, 34],
51413
- popupAnchor: [0, -34]
51414
- });
51415
- const marker2 = L$1.marker(
51416
- [lat2.toString(), lng.toString()],
51417
- { resource, icon }
51418
- );
51419
- if (this.clustering === null) marker2.addTo(this.map);
51420
- else this.markersCluster.addLayer(marker2);
51421
- marker2.on("click", this.dispatchSelect.bind(this));
51422
- if (this.fields !== null) {
51423
- marker2.bindPopup(() => this.getPopupContent(resourceId), { minWidth: 150 });
51424
- }
51425
- this.markers.push(marker2);
51426
- }
51427
- },
51428
- /**
51429
- * Generate the solid-display of the popup
51430
- * @param resourceId: id of the popup clicked
51431
- */
51432
- getPopupContent(resourceId) {
51433
- const attributes = {};
51434
- for (let attr of this.element.attributes) {
51435
- if (attr.name.startsWith("value-") || attr.name.startsWith("label-") || attr.name.startsWith("widget-") || attr.name.startsWith("class-") || attr.name.startsWith("multiple-") || attr.name.startsWith("editable-") || attr.name.startsWith("action-") || attr.name.startsWith("default-") || attr.name == "extra-context")
51436
- attributes[attr.name] = attr.value;
51437
- if (attr.name.startsWith("child-"))
51438
- attributes[attr.name.replace(/^child-/, "")] = attr.value;
51439
- }
51440
- const div2 = document.createElement("div");
51441
- const template = x`
51442
- <solid-display
51443
- fields="${o$2(this.fields)}"
51444
- data-src="${resourceId}"
51445
- ...=${spread(attributes)}
51446
- ></solid-display>
51447
- `;
51448
- B(template, div2);
51449
- return div2.querySelector("solid-display");
51450
- },
51451
- /**
51452
- * Override widgetMixin method: empty the map
51453
- */
51454
- empty() {
51455
- if (!this.map) return;
51456
- if (this.markersCluster) this.map.removeLayer(this.markersCluster);
51457
- for (let marker2 of this.markers) this.map.removeLayer(marker2);
51458
- if (this.clustering !== null) {
51459
- this.markersCluster = L$1.markerClusterGroup();
51460
- this.map.addLayer(this.markersCluster);
51461
- }
51462
- this.markers = [];
51463
- },
51464
- /**
51465
- * Override groupMixin method
51466
- * @param groupName: value of the group
51467
- */
51468
- renderGroup(groupName) {
51469
- const sanitizedGroupName = encodeURIComponent(groupName.toLowerCase()).replace(/%[0-9A-F]{2}/gi, "");
51470
- const div2 = document.createElement("div");
51471
- div2.dataset.groupClass = "group-" + sanitizedGroupName;
51472
- return div2;
51473
- },
51474
- /**
51475
- * Override listMixin method: display all the resources
51476
- * @param resources
51477
- * @param listPostProcessors
51478
- * @param div
51479
- * @param context
51480
- */
51481
- renderDOM: trackRenderAsync(
51482
- async function(resources, listPostProcessors, div2, context2) {
51483
- const groupClass = div2.dataset.groupClass || "";
51484
- await Promise.all(resources.map((resource) => this.appendChildElt(resource["@id"], groupClass)));
51485
- this.planReset();
51486
- const nextProcessor = listPostProcessors.shift();
51487
- if (nextProcessor) await nextProcessor(resources, listPostProcessors, div2, context2);
51488
- },
51489
- "SolidMap:renderDOM"
51490
- )
51491
- };
51492
- Sib.register(SolidMap);
51493
51303
  const SolidMembership = {
51494
51304
  name: "solid-membership",
51495
51305
  use: [NextMixin, ValidationMixin, ContextMixin],
@@ -52320,7 +52130,6 @@ export {
52320
52130
  SolidForm,
52321
52131
  SolidFormSearch,
52322
52132
  SolidLang,
52323
- SolidMap,
52324
52133
  SolidMemberAdd,
52325
52134
  SolidMemberDelete,
52326
52135
  SolidMembership,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startinblox/core",
3
- "version": "0.19.22-beta.4",
3
+ "version": "0.20.0-beta.1",
4
4
  "description": "This is a series of web component respecting both the web components standards and the Linked Data Platform convention.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -67,8 +67,6 @@
67
67
  "devDependencies": {
68
68
  "@rckeller/cypress-unfetch": "^1.0.1",
69
69
  "@types/autolinker": "^2.0.0",
70
- "@types/leaflet": "^1.9.12",
71
- "@types/leaflet.markercluster": "^1.5.4",
72
70
  "@types/markdown-it": "^14.1.2",
73
71
  "@types/node": "^22.7.1",
74
72
  "@types/pubsub-js": "^1.8.6",
@@ -82,8 +80,6 @@
82
80
  "fuse.js": "^7.0.0",
83
81
  "jsonld": "^8.3.2",
84
82
  "jsonld-context-parser": "^1.3.4",
85
- "leaflet": "1.9.4",
86
- "leaflet.markercluster": "1.5.3",
87
83
  "markdown-it": "^14.1.0",
88
84
  "markdown-it-link-attributes": "4.0.1",
89
85
  "pubsub-js": "^1.9.4",
@@ -91,7 +87,6 @@
91
87
  "quill-delta-to-markdown": "^0.6.0",
92
88
  "semver": "7.6.3",
93
89
  "slim-select": "^2.9.2",
94
- "tui-calendar": "^1.15.3",
95
90
  "typescript": "^5.6.2",
96
91
  "vite": "^5.4.8"
97
92
  },
@@ -1,4 +0,0 @@
1
- const MarkerCluster = ".leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {\n -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;\n -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;\n -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;\n transition: transform 0.3s ease-out, opacity 0.3s ease-in;\n}\n\n.leaflet-cluster-spider-leg {\n /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */\n -webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;\n -moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;\n -o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;\n transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;\n}\n";
2
- export {
3
- MarkerCluster as default
4
- };
@@ -1,4 +0,0 @@
1
- const MarkerCluster_Default = '.marker-cluster-small {\n background-color: rgba(181, 226, 140, 0.6);\n }\n.marker-cluster-small div {\n background-color: rgba(110, 204, 57, 0.6);\n }\n\n.marker-cluster-medium {\n background-color: rgba(241, 211, 87, 0.6);\n }\n.marker-cluster-medium div {\n background-color: rgba(240, 194, 12, 0.6);\n }\n\n.marker-cluster-large {\n background-color: rgba(253, 156, 115, 0.6);\n }\n.marker-cluster-large div {\n background-color: rgba(241, 128, 23, 0.6);\n }\n\n /* IE 6-8 fallback colors */\n.leaflet-oldie .marker-cluster-small {\n background-color: rgb(181, 226, 140);\n }\n.leaflet-oldie .marker-cluster-small div {\n background-color: rgb(110, 204, 57);\n }\n\n.leaflet-oldie .marker-cluster-medium {\n background-color: rgb(241, 211, 87);\n }\n.leaflet-oldie .marker-cluster-medium div {\n background-color: rgb(240, 194, 12);\n }\n\n.leaflet-oldie .marker-cluster-large {\n background-color: rgb(253, 156, 115);\n }\n.leaflet-oldie .marker-cluster-large div {\n background-color: rgb(241, 128, 23);\n}\n\n.marker-cluster {\n background-clip: padding-box;\n border-radius: 20px;\n }\n.marker-cluster div {\n width: 30px;\n height: 30px;\n margin-left: 5px;\n margin-top: 5px;\n\n text-align: center;\n border-radius: 15px;\n font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;\n }\n.marker-cluster span {\n line-height: 30px;\n }';
2
- export {
3
- MarkerCluster_Default as default
4
- };
@@ -1,4 +0,0 @@
1
- const defaultTheme = "/*==== SOLID-MAP ====*/\n/* map custom marker */\n.sib-custom-marker {\n position: absolute;\n top: 40%;\n left: 50%;\n margin-left: 115px;\n border-radius: 50%;\n border: 8px solid #1c78c9;\n width: 8px;\n height: 8px;\n}\n.sib-custom-marker::after {\n position: absolute;\n content: '';\n width: 0px;\n height: 0px;\n bottom: -30px;\n left: -6px;\n border: 10px solid transparent;\n border-top-width: 17px;\n border-top-style: solid;\n border-top-color: inherit;\n}";
2
- export {
3
- defaultTheme as default
4
- };
@@ -1,665 +0,0 @@
1
- const leaflet = `/* required styles */\r
2
- \r
3
- .leaflet-pane,\r
4
- .leaflet-tile,\r
5
- .leaflet-marker-icon,\r
6
- .leaflet-marker-shadow,\r
7
- .leaflet-tile-container,\r
8
- .leaflet-pane > svg,\r
9
- .leaflet-pane > canvas,\r
10
- .leaflet-zoom-box,\r
11
- .leaflet-image-layer,\r
12
- .leaflet-layer {\r
13
- position: absolute;\r
14
- left: 0;\r
15
- top: 0;\r
16
- }\r
17
- .leaflet-container {\r
18
- overflow: hidden;\r
19
- }\r
20
- .leaflet-tile,\r
21
- .leaflet-marker-icon,\r
22
- .leaflet-marker-shadow {\r
23
- -webkit-user-select: none;\r
24
- -moz-user-select: none;\r
25
- user-select: none;\r
26
- -webkit-user-drag: none;\r
27
- }\r
28
- /* Prevents IE11 from highlighting tiles in blue */\r
29
- .leaflet-tile::selection {\r
30
- background: transparent;\r
31
- }\r
32
- /* Safari renders non-retina tile on retina better with this, but Chrome is worse */\r
33
- .leaflet-safari .leaflet-tile {\r
34
- image-rendering: -webkit-optimize-contrast;\r
35
- }\r
36
- /* hack that prevents hw layers "stretching" when loading new tiles */\r
37
- .leaflet-safari .leaflet-tile-container {\r
38
- width: 1600px;\r
39
- height: 1600px;\r
40
- -webkit-transform-origin: 0 0;\r
41
- }\r
42
- .leaflet-marker-icon,\r
43
- .leaflet-marker-shadow {\r
44
- display: block;\r
45
- }\r
46
- /* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */\r
47
- /* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */\r
48
- .leaflet-container .leaflet-overlay-pane svg {\r
49
- max-width: none !important;\r
50
- max-height: none !important;\r
51
- }\r
52
- .leaflet-container .leaflet-marker-pane img,\r
53
- .leaflet-container .leaflet-shadow-pane img,\r
54
- .leaflet-container .leaflet-tile-pane img,\r
55
- .leaflet-container img.leaflet-image-layer,\r
56
- .leaflet-container .leaflet-tile {\r
57
- max-width: none !important;\r
58
- max-height: none !important;\r
59
- width: auto;\r
60
- padding: 0;\r
61
- }\r
62
- \r
63
- .leaflet-container img.leaflet-tile {\r
64
- /* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */\r
65
- mix-blend-mode: plus-lighter;\r
66
- }\r
67
- \r
68
- .leaflet-container.leaflet-touch-zoom {\r
69
- -ms-touch-action: pan-x pan-y;\r
70
- touch-action: pan-x pan-y;\r
71
- }\r
72
- .leaflet-container.leaflet-touch-drag {\r
73
- -ms-touch-action: pinch-zoom;\r
74
- /* Fallback for FF which doesn't support pinch-zoom */\r
75
- touch-action: none;\r
76
- touch-action: pinch-zoom;\r
77
- }\r
78
- .leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {\r
79
- -ms-touch-action: none;\r
80
- touch-action: none;\r
81
- }\r
82
- .leaflet-container {\r
83
- -webkit-tap-highlight-color: transparent;\r
84
- }\r
85
- .leaflet-container a {\r
86
- -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);\r
87
- }\r
88
- .leaflet-tile {\r
89
- filter: inherit;\r
90
- visibility: hidden;\r
91
- }\r
92
- .leaflet-tile-loaded {\r
93
- visibility: inherit;\r
94
- }\r
95
- .leaflet-zoom-box {\r
96
- width: 0;\r
97
- height: 0;\r
98
- -moz-box-sizing: border-box;\r
99
- box-sizing: border-box;\r
100
- z-index: 800;\r
101
- }\r
102
- /* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */\r
103
- .leaflet-overlay-pane svg {\r
104
- -moz-user-select: none;\r
105
- }\r
106
- \r
107
- .leaflet-pane { z-index: 400; }\r
108
- \r
109
- .leaflet-tile-pane { z-index: 200; }\r
110
- .leaflet-overlay-pane { z-index: 400; }\r
111
- .leaflet-shadow-pane { z-index: 500; }\r
112
- .leaflet-marker-pane { z-index: 600; }\r
113
- .leaflet-tooltip-pane { z-index: 650; }\r
114
- .leaflet-popup-pane { z-index: 700; }\r
115
- \r
116
- .leaflet-map-pane canvas { z-index: 100; }\r
117
- .leaflet-map-pane svg { z-index: 200; }\r
118
- \r
119
- .leaflet-vml-shape {\r
120
- width: 1px;\r
121
- height: 1px;\r
122
- }\r
123
- .lvml {\r
124
- behavior: url(#default#VML);\r
125
- display: inline-block;\r
126
- position: absolute;\r
127
- }\r
128
- \r
129
- \r
130
- /* control positioning */\r
131
- \r
132
- .leaflet-control {\r
133
- position: relative;\r
134
- z-index: 800;\r
135
- pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */\r
136
- pointer-events: auto;\r
137
- }\r
138
- .leaflet-top,\r
139
- .leaflet-bottom {\r
140
- position: absolute;\r
141
- z-index: 1000;\r
142
- pointer-events: none;\r
143
- }\r
144
- .leaflet-top {\r
145
- top: 0;\r
146
- }\r
147
- .leaflet-right {\r
148
- right: 0;\r
149
- }\r
150
- .leaflet-bottom {\r
151
- bottom: 0;\r
152
- }\r
153
- .leaflet-left {\r
154
- left: 0;\r
155
- }\r
156
- .leaflet-control {\r
157
- float: left;\r
158
- clear: both;\r
159
- }\r
160
- .leaflet-right .leaflet-control {\r
161
- float: right;\r
162
- }\r
163
- .leaflet-top .leaflet-control {\r
164
- margin-top: 10px;\r
165
- }\r
166
- .leaflet-bottom .leaflet-control {\r
167
- margin-bottom: 10px;\r
168
- }\r
169
- .leaflet-left .leaflet-control {\r
170
- margin-left: 10px;\r
171
- }\r
172
- .leaflet-right .leaflet-control {\r
173
- margin-right: 10px;\r
174
- }\r
175
- \r
176
- \r
177
- /* zoom and fade animations */\r
178
- \r
179
- .leaflet-fade-anim .leaflet-popup {\r
180
- opacity: 0;\r
181
- -webkit-transition: opacity 0.2s linear;\r
182
- -moz-transition: opacity 0.2s linear;\r
183
- transition: opacity 0.2s linear;\r
184
- }\r
185
- .leaflet-fade-anim .leaflet-map-pane .leaflet-popup {\r
186
- opacity: 1;\r
187
- }\r
188
- .leaflet-zoom-animated {\r
189
- -webkit-transform-origin: 0 0;\r
190
- -ms-transform-origin: 0 0;\r
191
- transform-origin: 0 0;\r
192
- }\r
193
- svg.leaflet-zoom-animated {\r
194
- will-change: transform;\r
195
- }\r
196
- \r
197
- .leaflet-zoom-anim .leaflet-zoom-animated {\r
198
- -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);\r
199
- -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);\r
200
- transition: transform 0.25s cubic-bezier(0,0,0.25,1);\r
201
- }\r
202
- .leaflet-zoom-anim .leaflet-tile,\r
203
- .leaflet-pan-anim .leaflet-tile {\r
204
- -webkit-transition: none;\r
205
- -moz-transition: none;\r
206
- transition: none;\r
207
- }\r
208
- \r
209
- .leaflet-zoom-anim .leaflet-zoom-hide {\r
210
- visibility: hidden;\r
211
- }\r
212
- \r
213
- \r
214
- /* cursors */\r
215
- \r
216
- .leaflet-interactive {\r
217
- cursor: pointer;\r
218
- }\r
219
- .leaflet-grab {\r
220
- cursor: -webkit-grab;\r
221
- cursor: -moz-grab;\r
222
- cursor: grab;\r
223
- }\r
224
- .leaflet-crosshair,\r
225
- .leaflet-crosshair .leaflet-interactive {\r
226
- cursor: crosshair;\r
227
- }\r
228
- .leaflet-popup-pane,\r
229
- .leaflet-control {\r
230
- cursor: auto;\r
231
- }\r
232
- .leaflet-dragging .leaflet-grab,\r
233
- .leaflet-dragging .leaflet-grab .leaflet-interactive,\r
234
- .leaflet-dragging .leaflet-marker-draggable {\r
235
- cursor: move;\r
236
- cursor: -webkit-grabbing;\r
237
- cursor: -moz-grabbing;\r
238
- cursor: grabbing;\r
239
- }\r
240
- \r
241
- /* marker & overlays interactivity */\r
242
- .leaflet-marker-icon,\r
243
- .leaflet-marker-shadow,\r
244
- .leaflet-image-layer,\r
245
- .leaflet-pane > svg path,\r
246
- .leaflet-tile-container {\r
247
- pointer-events: none;\r
248
- }\r
249
- \r
250
- .leaflet-marker-icon.leaflet-interactive,\r
251
- .leaflet-image-layer.leaflet-interactive,\r
252
- .leaflet-pane > svg path.leaflet-interactive,\r
253
- svg.leaflet-image-layer.leaflet-interactive path {\r
254
- pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */\r
255
- pointer-events: auto;\r
256
- }\r
257
- \r
258
- /* visual tweaks */\r
259
- \r
260
- .leaflet-container {\r
261
- background: #ddd;\r
262
- outline-offset: 1px;\r
263
- }\r
264
- .leaflet-container a {\r
265
- color: #0078A8;\r
266
- }\r
267
- .leaflet-zoom-box {\r
268
- border: 2px dotted #38f;\r
269
- background: rgba(255,255,255,0.5);\r
270
- }\r
271
- \r
272
- \r
273
- /* general typography */\r
274
- .leaflet-container {\r
275
- font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;\r
276
- font-size: 12px;\r
277
- font-size: 0.75rem;\r
278
- line-height: 1.5;\r
279
- }\r
280
- \r
281
- \r
282
- /* general toolbar styles */\r
283
- \r
284
- .leaflet-bar {\r
285
- box-shadow: 0 1px 5px rgba(0,0,0,0.65);\r
286
- border-radius: 4px;\r
287
- }\r
288
- .leaflet-bar a {\r
289
- background-color: #fff;\r
290
- border-bottom: 1px solid #ccc;\r
291
- width: 26px;\r
292
- height: 26px;\r
293
- line-height: 26px;\r
294
- display: block;\r
295
- text-align: center;\r
296
- text-decoration: none;\r
297
- color: black;\r
298
- }\r
299
- .leaflet-bar a,\r
300
- .leaflet-control-layers-toggle {\r
301
- background-position: 50% 50%;\r
302
- background-repeat: no-repeat;\r
303
- display: block;\r
304
- }\r
305
- .leaflet-bar a:hover,\r
306
- .leaflet-bar a:focus {\r
307
- background-color: #f4f4f4;\r
308
- }\r
309
- .leaflet-bar a:first-child {\r
310
- border-top-left-radius: 4px;\r
311
- border-top-right-radius: 4px;\r
312
- }\r
313
- .leaflet-bar a:last-child {\r
314
- border-bottom-left-radius: 4px;\r
315
- border-bottom-right-radius: 4px;\r
316
- border-bottom: none;\r
317
- }\r
318
- .leaflet-bar a.leaflet-disabled {\r
319
- cursor: default;\r
320
- background-color: #f4f4f4;\r
321
- color: #bbb;\r
322
- }\r
323
- \r
324
- .leaflet-touch .leaflet-bar a {\r
325
- width: 30px;\r
326
- height: 30px;\r
327
- line-height: 30px;\r
328
- }\r
329
- .leaflet-touch .leaflet-bar a:first-child {\r
330
- border-top-left-radius: 2px;\r
331
- border-top-right-radius: 2px;\r
332
- }\r
333
- .leaflet-touch .leaflet-bar a:last-child {\r
334
- border-bottom-left-radius: 2px;\r
335
- border-bottom-right-radius: 2px;\r
336
- }\r
337
- \r
338
- /* zoom control */\r
339
- \r
340
- .leaflet-control-zoom-in,\r
341
- .leaflet-control-zoom-out {\r
342
- font: bold 18px 'Lucida Console', Monaco, monospace;\r
343
- text-indent: 1px;\r
344
- }\r
345
- \r
346
- .leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {\r
347
- font-size: 22px;\r
348
- }\r
349
- \r
350
- \r
351
- /* layers control */\r
352
- \r
353
- .leaflet-control-layers {\r
354
- box-shadow: 0 1px 5px rgba(0,0,0,0.4);\r
355
- background: #fff;\r
356
- border-radius: 5px;\r
357
- }\r
358
- .leaflet-control-layers-toggle {\r
359
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);\r
360
- width: 36px;\r
361
- height: 36px;\r
362
- }\r
363
- .leaflet-retina .leaflet-control-layers-toggle {\r
364
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);\r
365
- background-size: 26px 26px;\r
366
- }\r
367
- .leaflet-touch .leaflet-control-layers-toggle {\r
368
- width: 44px;\r
369
- height: 44px;\r
370
- }\r
371
- .leaflet-control-layers .leaflet-control-layers-list,\r
372
- .leaflet-control-layers-expanded .leaflet-control-layers-toggle {\r
373
- display: none;\r
374
- }\r
375
- .leaflet-control-layers-expanded .leaflet-control-layers-list {\r
376
- display: block;\r
377
- position: relative;\r
378
- }\r
379
- .leaflet-control-layers-expanded {\r
380
- padding: 6px 10px 6px 6px;\r
381
- color: #333;\r
382
- background: #fff;\r
383
- }\r
384
- .leaflet-control-layers-scrollbar {\r
385
- overflow-y: scroll;\r
386
- overflow-x: hidden;\r
387
- padding-right: 5px;\r
388
- }\r
389
- .leaflet-control-layers-selector {\r
390
- margin-top: 2px;\r
391
- position: relative;\r
392
- top: 1px;\r
393
- }\r
394
- .leaflet-control-layers label {\r
395
- display: block;\r
396
- font-size: 13px;\r
397
- font-size: 1.08333em;\r
398
- }\r
399
- .leaflet-control-layers-separator {\r
400
- height: 0;\r
401
- border-top: 1px solid #ddd;\r
402
- margin: 5px -10px 5px -6px;\r
403
- }\r
404
- \r
405
- /* Default icon URLs */\r
406
- .leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */\r
407
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=);\r
408
- }\r
409
- \r
410
- \r
411
- /* attribution and scale controls */\r
412
- \r
413
- .leaflet-container .leaflet-control-attribution {\r
414
- background: #fff;\r
415
- background: rgba(255, 255, 255, 0.8);\r
416
- margin: 0;\r
417
- }\r
418
- .leaflet-control-attribution,\r
419
- .leaflet-control-scale-line {\r
420
- padding: 0 5px;\r
421
- color: #333;\r
422
- line-height: 1.4;\r
423
- }\r
424
- .leaflet-control-attribution a {\r
425
- text-decoration: none;\r
426
- }\r
427
- .leaflet-control-attribution a:hover,\r
428
- .leaflet-control-attribution a:focus {\r
429
- text-decoration: underline;\r
430
- }\r
431
- .leaflet-attribution-flag {\r
432
- display: inline !important;\r
433
- vertical-align: baseline !important;\r
434
- width: 1em;\r
435
- height: 0.6669em;\r
436
- }\r
437
- .leaflet-left .leaflet-control-scale {\r
438
- margin-left: 5px;\r
439
- }\r
440
- .leaflet-bottom .leaflet-control-scale {\r
441
- margin-bottom: 5px;\r
442
- }\r
443
- .leaflet-control-scale-line {\r
444
- border: 2px solid #777;\r
445
- border-top: none;\r
446
- line-height: 1.1;\r
447
- padding: 2px 5px 1px;\r
448
- white-space: nowrap;\r
449
- -moz-box-sizing: border-box;\r
450
- box-sizing: border-box;\r
451
- background: rgba(255, 255, 255, 0.8);\r
452
- text-shadow: 1px 1px #fff;\r
453
- }\r
454
- .leaflet-control-scale-line:not(:first-child) {\r
455
- border-top: 2px solid #777;\r
456
- border-bottom: none;\r
457
- margin-top: -2px;\r
458
- }\r
459
- .leaflet-control-scale-line:not(:first-child):not(:last-child) {\r
460
- border-bottom: 2px solid #777;\r
461
- }\r
462
- \r
463
- .leaflet-touch .leaflet-control-attribution,\r
464
- .leaflet-touch .leaflet-control-layers,\r
465
- .leaflet-touch .leaflet-bar {\r
466
- box-shadow: none;\r
467
- }\r
468
- .leaflet-touch .leaflet-control-layers,\r
469
- .leaflet-touch .leaflet-bar {\r
470
- border: 2px solid rgba(0,0,0,0.2);\r
471
- background-clip: padding-box;\r
472
- }\r
473
- \r
474
- \r
475
- /* popup */\r
476
- \r
477
- .leaflet-popup {\r
478
- position: absolute;\r
479
- text-align: center;\r
480
- margin-bottom: 20px;\r
481
- }\r
482
- .leaflet-popup-content-wrapper {\r
483
- padding: 1px;\r
484
- text-align: left;\r
485
- border-radius: 12px;\r
486
- }\r
487
- .leaflet-popup-content {\r
488
- margin: 13px 24px 13px 20px;\r
489
- line-height: 1.3;\r
490
- font-size: 13px;\r
491
- font-size: 1.08333em;\r
492
- min-height: 1px;\r
493
- }\r
494
- .leaflet-popup-content p {\r
495
- margin: 17px 0;\r
496
- margin: 1.3em 0;\r
497
- }\r
498
- .leaflet-popup-tip-container {\r
499
- width: 40px;\r
500
- height: 20px;\r
501
- position: absolute;\r
502
- left: 50%;\r
503
- margin-top: -1px;\r
504
- margin-left: -20px;\r
505
- overflow: hidden;\r
506
- pointer-events: none;\r
507
- }\r
508
- .leaflet-popup-tip {\r
509
- width: 17px;\r
510
- height: 17px;\r
511
- padding: 1px;\r
512
- \r
513
- margin: -10px auto 0;\r
514
- pointer-events: auto;\r
515
- \r
516
- -webkit-transform: rotate(45deg);\r
517
- -moz-transform: rotate(45deg);\r
518
- -ms-transform: rotate(45deg);\r
519
- transform: rotate(45deg);\r
520
- }\r
521
- .leaflet-popup-content-wrapper,\r
522
- .leaflet-popup-tip {\r
523
- background: white;\r
524
- color: #333;\r
525
- box-shadow: 0 3px 14px rgba(0,0,0,0.4);\r
526
- }\r
527
- .leaflet-container a.leaflet-popup-close-button {\r
528
- position: absolute;\r
529
- top: 0;\r
530
- right: 0;\r
531
- border: none;\r
532
- text-align: center;\r
533
- width: 24px;\r
534
- height: 24px;\r
535
- font: 16px/24px Tahoma, Verdana, sans-serif;\r
536
- color: #757575;\r
537
- text-decoration: none;\r
538
- background: transparent;\r
539
- }\r
540
- .leaflet-container a.leaflet-popup-close-button:hover,\r
541
- .leaflet-container a.leaflet-popup-close-button:focus {\r
542
- color: #585858;\r
543
- }\r
544
- .leaflet-popup-scrolled {\r
545
- overflow: auto;\r
546
- }\r
547
- \r
548
- .leaflet-oldie .leaflet-popup-content-wrapper {\r
549
- -ms-zoom: 1;\r
550
- }\r
551
- .leaflet-oldie .leaflet-popup-tip {\r
552
- width: 24px;\r
553
- margin: 0 auto;\r
554
- \r
555
- -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";\r
556
- filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);\r
557
- }\r
558
- \r
559
- .leaflet-oldie .leaflet-control-zoom,\r
560
- .leaflet-oldie .leaflet-control-layers,\r
561
- .leaflet-oldie .leaflet-popup-content-wrapper,\r
562
- .leaflet-oldie .leaflet-popup-tip {\r
563
- border: 1px solid #999;\r
564
- }\r
565
- \r
566
- \r
567
- /* div icon */\r
568
- \r
569
- .leaflet-div-icon {\r
570
- background: #fff;\r
571
- border: 1px solid #666;\r
572
- }\r
573
- \r
574
- \r
575
- /* Tooltip */\r
576
- /* Base styles for the element that has a tooltip */\r
577
- .leaflet-tooltip {\r
578
- position: absolute;\r
579
- padding: 6px;\r
580
- background-color: #fff;\r
581
- border: 1px solid #fff;\r
582
- border-radius: 3px;\r
583
- color: #222;\r
584
- white-space: nowrap;\r
585
- -webkit-user-select: none;\r
586
- -moz-user-select: none;\r
587
- -ms-user-select: none;\r
588
- user-select: none;\r
589
- pointer-events: none;\r
590
- box-shadow: 0 1px 3px rgba(0,0,0,0.4);\r
591
- }\r
592
- .leaflet-tooltip.leaflet-interactive {\r
593
- cursor: pointer;\r
594
- pointer-events: auto;\r
595
- }\r
596
- .leaflet-tooltip-top:before,\r
597
- .leaflet-tooltip-bottom:before,\r
598
- .leaflet-tooltip-left:before,\r
599
- .leaflet-tooltip-right:before {\r
600
- position: absolute;\r
601
- pointer-events: none;\r
602
- border: 6px solid transparent;\r
603
- background: transparent;\r
604
- content: "";\r
605
- }\r
606
- \r
607
- /* Directions */\r
608
- \r
609
- .leaflet-tooltip-bottom {\r
610
- margin-top: 6px;\r
611
- }\r
612
- .leaflet-tooltip-top {\r
613
- margin-top: -6px;\r
614
- }\r
615
- .leaflet-tooltip-bottom:before,\r
616
- .leaflet-tooltip-top:before {\r
617
- left: 50%;\r
618
- margin-left: -6px;\r
619
- }\r
620
- .leaflet-tooltip-top:before {\r
621
- bottom: 0;\r
622
- margin-bottom: -12px;\r
623
- border-top-color: #fff;\r
624
- }\r
625
- .leaflet-tooltip-bottom:before {\r
626
- top: 0;\r
627
- margin-top: -12px;\r
628
- margin-left: -6px;\r
629
- border-bottom-color: #fff;\r
630
- }\r
631
- .leaflet-tooltip-left {\r
632
- margin-left: -6px;\r
633
- }\r
634
- .leaflet-tooltip-right {\r
635
- margin-left: 6px;\r
636
- }\r
637
- .leaflet-tooltip-left:before,\r
638
- .leaflet-tooltip-right:before {\r
639
- top: 50%;\r
640
- margin-top: -6px;\r
641
- }\r
642
- .leaflet-tooltip-left:before {\r
643
- right: 0;\r
644
- margin-right: -12px;\r
645
- border-left-color: #fff;\r
646
- }\r
647
- .leaflet-tooltip-right:before {\r
648
- left: 0;\r
649
- margin-left: -12px;\r
650
- border-right-color: #fff;\r
651
- }\r
652
- \r
653
- /* Printing */\r
654
- \r
655
- @media print {\r
656
- /* Prevent printers from removing background-images of controls. */\r
657
- .leaflet-control {\r
658
- -webkit-print-color-adjust: exact;\r
659
- print-color-adjust: exact;\r
660
- }\r
661
- }\r
662
- `;
663
- export {
664
- leaflet as default
665
- };