koishi-plugin-aktmp 1.0.0

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.
Files changed (63) hide show
  1. package/lib/api/evmOpenApi.d.ts +45 -0
  2. package/lib/api/evmOpenApi.js +158 -0
  3. package/lib/api/truckersMpApi.d.ts +34 -0
  4. package/lib/api/truckersMpApi.js +110 -0
  5. package/lib/api/truckersMpMapApi.d.ts +6 -0
  6. package/lib/api/truckersMpMapApi.js +25 -0
  7. package/lib/api/truckyAppApi.d.ts +12 -0
  8. package/lib/api/truckyAppApi.js +32 -0
  9. package/lib/command/tmpBind.d.ts +2 -0
  10. package/lib/command/tmpBind.js +19 -0
  11. package/lib/command/tmpDlcMap.d.ts +3 -0
  12. package/lib/command/tmpDlcMap.js +33 -0
  13. package/lib/command/tmpFootprint.d.ts +3 -0
  14. package/lib/command/tmpFootprint.js +82 -0
  15. package/lib/command/tmpMileageRanking.d.ts +3 -0
  16. package/lib/command/tmpMileageRanking.js +55 -0
  17. package/lib/command/tmpPosition.d.ts +3 -0
  18. package/lib/command/tmpPosition.js +95 -0
  19. package/lib/command/tmpQuery.d.ts +2 -0
  20. package/lib/command/tmpQuery.js +148 -0
  21. package/lib/command/tmpServer/tmpServer.d.ts +2 -0
  22. package/lib/command/tmpServer/tmpServer.js +15 -0
  23. package/lib/command/tmpServer/tmpServerImg.d.ts +3 -0
  24. package/lib/command/tmpServer/tmpServerImg.js +35 -0
  25. package/lib/command/tmpServer/tmpServerText.d.ts +2 -0
  26. package/lib/command/tmpServer/tmpServerText.js +40 -0
  27. package/lib/command/tmpTraffic/tmpTraffic.d.ts +2 -0
  28. package/lib/command/tmpTraffic/tmpTraffic.js +15 -0
  29. package/lib/command/tmpTraffic/tmpTrafficMap.d.ts +3 -0
  30. package/lib/command/tmpTraffic/tmpTrafficMap.js +119 -0
  31. package/lib/command/tmpTraffic/tmpTrafficText.d.ts +2 -0
  32. package/lib/command/tmpTraffic/tmpTrafficText.js +122 -0
  33. package/lib/command/tmpUnbind.js +17 -0
  34. package/lib/command/tmpVersion.d.ts +2 -0
  35. package/lib/command/tmpVersion.js +31 -0
  36. package/lib/database/guildBind.d.ts +22 -0
  37. package/lib/database/guildBind.js +55 -0
  38. package/lib/database/model.d.ts +2 -0
  39. package/lib/database/model.js +65 -0
  40. package/lib/database/translateCache.d.ts +14 -0
  41. package/lib/database/translateCache.js +31 -0
  42. package/lib/index.d.ts +14 -0
  43. package/lib/index.js +59 -0
  44. package/lib/resource/dlc.html +115 -0
  45. package/lib/resource/footprint.html +241 -0
  46. package/lib/resource/mileage-leaderboard.html +363 -0
  47. package/lib/resource/package/SEGUIEMJ.TTF +0 -0
  48. package/lib/resource/package/ets-map.js +63 -0
  49. package/lib/resource/package/leaflet/heatmap.min.js +9 -0
  50. package/lib/resource/package/leaflet/leaflet-heatmap.js +246 -0
  51. package/lib/resource/package/leaflet/leaflet.min.css +1 -0
  52. package/lib/resource/package/leaflet/leaflet.min.js +1 -0
  53. package/lib/resource/position.html +229 -0
  54. package/lib/resource/server-list.html +309 -0
  55. package/lib/resource/traffic.html +207 -0
  56. package/lib/util/baiduTranslate.d.ts +2 -0
  57. package/lib/util/baiduTranslate.js +30 -0
  58. package/lib/util/common.d.ts +1 -0
  59. package/lib/util/common.js +5 -0
  60. package/lib/util/constant.d.ts +19 -0
  61. package/lib/util/constant.js +36 -0
  62. package/package.json +48 -0
  63. package/readme.md +86 -0
@@ -0,0 +1,246 @@
1
+ /*
2
+ * Leaflet Heatmap Overlay
3
+ *
4
+ * Copyright (c) 2008-2016, Patrick Wied (https://www.patrick-wied.at)
5
+ * Dual-licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
6
+ * and the Beerware (http://en.wikipedia.org/wiki/Beerware) license.
7
+ */
8
+ ; (function (name, context, factory) {
9
+ // Supports UMD. AMD, CommonJS/Node.js and browser context
10
+ if (typeof module !== "undefined" && module.exports) {
11
+ module.exports = factory(
12
+ require('heatmap.js'),
13
+ require('leaflet')
14
+ );
15
+ } else if (typeof define === "function" && define.amd) {
16
+ define(['heatmap.js', 'leaflet'], factory);
17
+ } else {
18
+ // browser globals
19
+ if (typeof window.h337 === 'undefined') {
20
+ throw new Error('heatmap.js must be loaded before the leaflet heatmap plugin');
21
+ }
22
+ if (typeof window.L === 'undefined') {
23
+ throw new Error('Leaflet must be loaded before the leaflet heatmap plugin');
24
+ }
25
+ context[name] = factory(window.h337, window.L);
26
+ }
27
+
28
+ })("HeatmapOverlay", this, function (h337, L) {
29
+ 'use strict';
30
+
31
+ // Leaflet < 0.8 compatibility
32
+ if (typeof L.Layer === 'undefined') {
33
+ L.Layer = L.Class;
34
+ }
35
+
36
+ var HeatmapOverlay = L.Layer.extend({
37
+
38
+ initialize: function (config) {
39
+ this.cfg = config;
40
+ this._el = L.DomUtil.create('div', 'leaflet-zoom-hide');
41
+ this._data = [];
42
+ this._max = 1;
43
+ this._min = 0;
44
+ this.cfg.container = this._el;
45
+ },
46
+
47
+ onAdd: function (map) {
48
+ var size = map.getSize();
49
+
50
+ this._map = map;
51
+
52
+ this._width = size.x;
53
+ this._height = size.y;
54
+
55
+ this._el.style.width = size.x + 'px';
56
+ this._el.style.height = size.y + 'px';
57
+ this._el.style.position = 'absolute';
58
+
59
+ this._origin = this._map.layerPointToLatLng(new L.Point(0, 0));
60
+
61
+ map.getPanes().overlayPane.appendChild(this._el);
62
+
63
+ if (!this._heatmap) {
64
+ this._heatmap = h337.create(this.cfg);
65
+ }
66
+
67
+ // this resets the origin and redraws whenever
68
+ // the zoom changed or the map has been moved
69
+ map.on('moveend', this._reset, this);
70
+ this._draw();
71
+ },
72
+
73
+ addTo: function (map) {
74
+ map.addLayer(this);
75
+ return this;
76
+ },
77
+
78
+ onRemove: function (map) {
79
+ // remove layer's DOM elements and listeners
80
+ map.getPanes().overlayPane.removeChild(this._el);
81
+
82
+ map.off('moveend', this._reset, this);
83
+ },
84
+ _draw: function () {
85
+ if (!this._map) { return; }
86
+
87
+ var mapPane = this._map.getPanes().mapPane;
88
+ var point = mapPane._leaflet_pos;
89
+
90
+ // reposition the layer
91
+ this._el.style[HeatmapOverlay.CSS_TRANSFORM] = 'translate(' +
92
+ -Math.round(point.x) + 'px,' +
93
+ -Math.round(point.y) + 'px)';
94
+
95
+ this._update();
96
+ },
97
+ _update: function () {
98
+ var bounds, zoom, scale;
99
+ var generatedData = { max: this._max, min: this._min, data: [] };
100
+
101
+ bounds = this._map.getBounds();
102
+ zoom = this._map.getZoom();
103
+ scale = Math.pow(2, zoom);
104
+
105
+ if (this._data.length == 0) {
106
+ if (this._heatmap) {
107
+ this._heatmap.setData(generatedData);
108
+ }
109
+ return;
110
+ }
111
+
112
+
113
+ var latLngPoints = [];
114
+ var radiusMultiplier = this.cfg.scaleRadius ? scale : 1;
115
+ var localMax = 0;
116
+ var localMin = 0;
117
+ var valueField = this.cfg.valueField;
118
+ var len = this._data.length;
119
+
120
+ while (len--) {
121
+ var entry = this._data[len];
122
+ var value = entry[valueField];
123
+ var latlng = entry.latlng;
124
+
125
+
126
+ // we don't wanna render points that are not even on the map ;-)
127
+ if (!bounds.contains(latlng)) {
128
+ continue;
129
+ }
130
+ // local max is the maximum within current bounds
131
+ localMax = Math.max(value, localMax);
132
+ localMin = Math.min(value, localMin);
133
+
134
+ var point = this._map.latLngToContainerPoint(latlng);
135
+ var latlngPoint = { x: Math.round(point.x), y: Math.round(point.y) };
136
+ latlngPoint[valueField] = value;
137
+
138
+ var radius;
139
+
140
+ if (entry.radius) {
141
+ radius = entry.radius * radiusMultiplier;
142
+ } else {
143
+ radius = (this.cfg.radius || 2) * radiusMultiplier;
144
+ }
145
+ latlngPoint.radius = radius;
146
+ latLngPoints.push(latlngPoint);
147
+ }
148
+ if (this.cfg.useLocalExtrema) {
149
+ generatedData.max = localMax;
150
+ generatedData.min = localMin;
151
+ }
152
+
153
+ generatedData.data = latLngPoints;
154
+
155
+ this._heatmap.setData(generatedData);
156
+ },
157
+ setData: function (data) {
158
+ this._max = data.max || this._max;
159
+ this._min = data.min || this._min;
160
+ var latField = this.cfg.latField || 'lat';
161
+ var lngField = this.cfg.lngField || 'lng';
162
+ var valueField = this.cfg.valueField || 'value';
163
+
164
+ // transform data to latlngs
165
+ var data = data.data;
166
+ var len = data.length;
167
+ var d = [];
168
+
169
+ while (len--) {
170
+ var entry = data[len];
171
+ var latlng = new L.LatLng(entry[latField], entry[lngField]);
172
+ var dataObj = { latlng: latlng };
173
+ dataObj[valueField] = entry[valueField];
174
+ if (entry.radius) {
175
+ dataObj.radius = entry.radius;
176
+ }
177
+ d.push(dataObj);
178
+ }
179
+ this._data = d;
180
+
181
+ this._draw();
182
+ },
183
+ // experimential... not ready.
184
+ addData: function (pointOrArray) {
185
+ if (pointOrArray.length > 0) {
186
+ var len = pointOrArray.length;
187
+ while (len--) {
188
+ this.addData(pointOrArray[len]);
189
+ }
190
+ } else {
191
+ var latField = this.cfg.latField || 'lat';
192
+ var lngField = this.cfg.lngField || 'lng';
193
+ var valueField = this.cfg.valueField || 'value';
194
+ var entry = pointOrArray;
195
+ var latlng = new L.LatLng(entry[latField], entry[lngField]);
196
+ var dataObj = { latlng: latlng };
197
+
198
+ dataObj[valueField] = entry[valueField];
199
+ this._max = Math.max(this._max, dataObj[valueField]);
200
+ this._min = Math.min(this._min, dataObj[valueField]);
201
+
202
+ if (entry.radius) {
203
+ dataObj.radius = entry.radius;
204
+ }
205
+ this._data.push(dataObj);
206
+ this._draw();
207
+ }
208
+ },
209
+ _reset: function () {
210
+ this._origin = this._map.layerPointToLatLng(new L.Point(0, 0));
211
+
212
+ var size = this._map.getSize();
213
+ if (this._width !== size.x || this._height !== size.y) {
214
+ this._width = size.x;
215
+ this._height = size.y;
216
+
217
+ this._el.style.width = this._width + 'px';
218
+ this._el.style.height = this._height + 'px';
219
+
220
+ this._heatmap._renderer.setDimensions(this._width, this._height);
221
+ }
222
+ this._draw();
223
+ }
224
+ });
225
+
226
+ HeatmapOverlay.CSS_TRANSFORM = (function () {
227
+ var div = document.createElement('div');
228
+ var props = [
229
+ 'transform',
230
+ 'WebkitTransform',
231
+ 'MozTransform',
232
+ 'OTransform',
233
+ 'msTransform'
234
+ ];
235
+
236
+ for (var i = 0; i < props.length; i++) {
237
+ var prop = props[i];
238
+ if (div.style[prop] !== undefined) {
239
+ return prop;
240
+ }
241
+ }
242
+ return props[0];
243
+ })();
244
+
245
+ return HeatmapOverlay;
246
+ });
@@ -0,0 +1 @@
1
+ .leaflet-image-layer,.leaflet-layer,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-pane,.leaflet-pane>canvas,.leaflet-pane>svg,.leaflet-tile,.leaflet-tile-container,.leaflet-zoom-box{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:0 0}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;-moz-box-sizing:border-box;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-bottom,.leaflet-top{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-pan-anim .leaflet-tile,.leaflet-zoom-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-control,.leaflet-popup-pane{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-image-layer,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-image-layer.leaflet-interactive,.leaflet-marker-icon.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,.5)}.leaflet-container{font-family:"Helvetica Neue",Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px rgba(0,0,0,.65);border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:focus,.leaflet-bar a:hover{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:bold 18px 'Lucida Console',Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px rgba(0,0,0,.4);background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(images/layers.png);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(images/layers-2x.png);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(images/marker-icon.png)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:focus,.leaflet-control-attribution a:hover{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(255,255,255,.8);text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-bar,.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers{box-shadow:none}.leaflet-touch .leaflet-bar,.leaflet-touch .leaflet-control-layers{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:17px 0;margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;color:#333;box-shadow:0 3px 14px rgba(0,0,0,.4)}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:0 0}.leaflet-container a.leaflet-popup-close-button:focus,.leaflet-container a.leaflet-popup-close-button:hover{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto}.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px rgba(0,0,0,.4)}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before,.leaflet-tooltip-top:before{position:absolute;pointer-events:none;border:6px solid transparent;background:0 0;content:""}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}