@bagelink/vue 0.0.635 → 0.0.639

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/style.css CHANGED
@@ -1146,667 +1146,6 @@ display: block;
1146
1146
  grid-auto-columns: 100%;
1147
1147
  }
1148
1148
  }
1149
- /* required styles */
1150
-
1151
- .leaflet-pane,
1152
- .leaflet-tile,
1153
- .leaflet-marker-icon,
1154
- .leaflet-marker-shadow,
1155
- .leaflet-tile-container,
1156
- .leaflet-pane > svg,
1157
- .leaflet-pane > canvas,
1158
- .leaflet-zoom-box,
1159
- .leaflet-image-layer,
1160
- .leaflet-layer {
1161
- position: absolute;
1162
- left: 0;
1163
- top: 0;
1164
- }
1165
- .leaflet-container {
1166
- overflow: hidden;
1167
- }
1168
- .leaflet-tile,
1169
- .leaflet-marker-icon,
1170
- .leaflet-marker-shadow {
1171
- -webkit-user-select: none;
1172
- -moz-user-select: none;
1173
- user-select: none;
1174
- -webkit-user-drag: none;
1175
- }
1176
- /* Prevents IE11 from highlighting tiles in blue */
1177
- .leaflet-tile::selection {
1178
- background: transparent;
1179
- }
1180
- /* Safari renders non-retina tile on retina better with this, but Chrome is worse */
1181
- .leaflet-safari .leaflet-tile {
1182
- image-rendering: -webkit-optimize-contrast;
1183
- }
1184
- /* hack that prevents hw layers "stretching" when loading new tiles */
1185
- .leaflet-safari .leaflet-tile-container {
1186
- width: 1600px;
1187
- height: 1600px;
1188
- -webkit-transform-origin: 0 0;
1189
- }
1190
- .leaflet-marker-icon,
1191
- .leaflet-marker-shadow {
1192
- display: block;
1193
- }
1194
- /* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
1195
- /* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
1196
- .leaflet-container .leaflet-overlay-pane svg {
1197
- max-width: none !important;
1198
- max-height: none !important;
1199
- }
1200
- .leaflet-container .leaflet-marker-pane img,
1201
- .leaflet-container .leaflet-shadow-pane img,
1202
- .leaflet-container .leaflet-tile-pane img,
1203
- .leaflet-container img.leaflet-image-layer,
1204
- .leaflet-container .leaflet-tile {
1205
- max-width: none !important;
1206
- max-height: none !important;
1207
- width: auto;
1208
- padding: 0;
1209
- }
1210
-
1211
- .leaflet-container img.leaflet-tile {
1212
- /* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
1213
- mix-blend-mode: plus-lighter;
1214
- }
1215
-
1216
- .leaflet-container.leaflet-touch-zoom {
1217
- -ms-touch-action: pan-x pan-y;
1218
- touch-action: pan-x pan-y;
1219
- }
1220
- .leaflet-container.leaflet-touch-drag {
1221
- -ms-touch-action: pinch-zoom;
1222
- /* Fallback for FF which doesn't support pinch-zoom */
1223
- touch-action: none;
1224
- touch-action: pinch-zoom;
1225
- }
1226
- .leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
1227
- -ms-touch-action: none;
1228
- touch-action: none;
1229
- }
1230
- .leaflet-container {
1231
- -webkit-tap-highlight-color: transparent;
1232
- }
1233
- .leaflet-container a {
1234
- -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
1235
- }
1236
- .leaflet-tile {
1237
- filter: inherit;
1238
- visibility: hidden;
1239
- }
1240
- .leaflet-tile-loaded {
1241
- visibility: inherit;
1242
- }
1243
- .leaflet-zoom-box {
1244
- width: 0;
1245
- height: 0;
1246
- -moz-box-sizing: border-box;
1247
- box-sizing: border-box;
1248
- z-index: 800;
1249
- }
1250
- /* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
1251
- .leaflet-overlay-pane svg {
1252
- -moz-user-select: none;
1253
- }
1254
-
1255
- .leaflet-pane { z-index: 400; }
1256
-
1257
- .leaflet-tile-pane { z-index: 200; }
1258
- .leaflet-overlay-pane { z-index: 400; }
1259
- .leaflet-shadow-pane { z-index: 500; }
1260
- .leaflet-marker-pane { z-index: 600; }
1261
- .leaflet-tooltip-pane { z-index: 650; }
1262
- .leaflet-popup-pane { z-index: 700; }
1263
-
1264
- .leaflet-map-pane canvas { z-index: 100; }
1265
- .leaflet-map-pane svg { z-index: 200; }
1266
-
1267
- .leaflet-vml-shape {
1268
- width: 1px;
1269
- height: 1px;
1270
- }
1271
- .lvml {
1272
- behavior: url(#default#VML);
1273
- display: inline-block;
1274
- position: absolute;
1275
- }
1276
-
1277
-
1278
- /* control positioning */
1279
-
1280
- .leaflet-control {
1281
- position: relative;
1282
- z-index: 800;
1283
- pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
1284
- pointer-events: auto;
1285
- }
1286
- .leaflet-top,
1287
- .leaflet-bottom {
1288
- position: absolute;
1289
- z-index: 1000;
1290
- pointer-events: none;
1291
- }
1292
- .leaflet-top {
1293
- top: 0;
1294
- }
1295
- .leaflet-right {
1296
- right: 0;
1297
- }
1298
- .leaflet-bottom {
1299
- bottom: 0;
1300
- }
1301
- .leaflet-left {
1302
- left: 0;
1303
- }
1304
- .leaflet-control {
1305
- float: left;
1306
- clear: both;
1307
- }
1308
- .leaflet-right .leaflet-control {
1309
- float: right;
1310
- }
1311
- .leaflet-top .leaflet-control {
1312
- margin-top: 10px;
1313
- }
1314
- .leaflet-bottom .leaflet-control {
1315
- margin-bottom: 10px;
1316
- }
1317
- .leaflet-left .leaflet-control {
1318
- margin-left: 10px;
1319
- }
1320
- .leaflet-right .leaflet-control {
1321
- margin-right: 10px;
1322
- }
1323
-
1324
-
1325
- /* zoom and fade animations */
1326
-
1327
- .leaflet-fade-anim .leaflet-popup {
1328
- opacity: 0;
1329
- -webkit-transition: opacity 0.2s linear;
1330
- -moz-transition: opacity 0.2s linear;
1331
- transition: opacity 0.2s linear;
1332
- }
1333
- .leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
1334
- opacity: 1;
1335
- }
1336
- .leaflet-zoom-animated {
1337
- -webkit-transform-origin: 0 0;
1338
- -ms-transform-origin: 0 0;
1339
- transform-origin: 0 0;
1340
- }
1341
- svg.leaflet-zoom-animated {
1342
- will-change: transform;
1343
- }
1344
-
1345
- .leaflet-zoom-anim .leaflet-zoom-animated {
1346
- -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
1347
- -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
1348
- transition: transform 0.25s cubic-bezier(0,0,0.25,1);
1349
- }
1350
- .leaflet-zoom-anim .leaflet-tile,
1351
- .leaflet-pan-anim .leaflet-tile {
1352
- -webkit-transition: none;
1353
- -moz-transition: none;
1354
- transition: none;
1355
- }
1356
-
1357
- .leaflet-zoom-anim .leaflet-zoom-hide {
1358
- visibility: hidden;
1359
- }
1360
-
1361
-
1362
- /* cursors */
1363
-
1364
- .leaflet-interactive {
1365
- cursor: pointer;
1366
- }
1367
- .leaflet-grab {
1368
- cursor: -webkit-grab;
1369
- cursor: -moz-grab;
1370
- cursor: grab;
1371
- }
1372
- .leaflet-crosshair,
1373
- .leaflet-crosshair .leaflet-interactive {
1374
- cursor: crosshair;
1375
- }
1376
- .leaflet-popup-pane,
1377
- .leaflet-control {
1378
- cursor: auto;
1379
- }
1380
- .leaflet-dragging .leaflet-grab,
1381
- .leaflet-dragging .leaflet-grab .leaflet-interactive,
1382
- .leaflet-dragging .leaflet-marker-draggable {
1383
- cursor: move;
1384
- cursor: -webkit-grabbing;
1385
- cursor: -moz-grabbing;
1386
- cursor: grabbing;
1387
- }
1388
-
1389
- /* marker & overlays interactivity */
1390
- .leaflet-marker-icon,
1391
- .leaflet-marker-shadow,
1392
- .leaflet-image-layer,
1393
- .leaflet-pane > svg path,
1394
- .leaflet-tile-container {
1395
- pointer-events: none;
1396
- }
1397
-
1398
- .leaflet-marker-icon.leaflet-interactive,
1399
- .leaflet-image-layer.leaflet-interactive,
1400
- .leaflet-pane > svg path.leaflet-interactive,
1401
- svg.leaflet-image-layer.leaflet-interactive path {
1402
- pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
1403
- pointer-events: auto;
1404
- }
1405
-
1406
- /* visual tweaks */
1407
-
1408
- .leaflet-container {
1409
- background: #ddd;
1410
- outline-offset: 1px;
1411
- }
1412
- .leaflet-container a {
1413
- color: #0078A8;
1414
- }
1415
- .leaflet-zoom-box {
1416
- border: 2px dotted #38f;
1417
- background: rgba(255,255,255,0.5);
1418
- }
1419
-
1420
-
1421
- /* general typography */
1422
- .leaflet-container {
1423
- font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
1424
- font-size: 12px;
1425
- font-size: 0.75rem;
1426
- line-height: 1.5;
1427
- }
1428
-
1429
-
1430
- /* general toolbar styles */
1431
-
1432
- .leaflet-bar {
1433
- box-shadow: 0 1px 5px rgba(0,0,0,0.65);
1434
- border-radius: 4px;
1435
- }
1436
- .leaflet-bar a {
1437
- background-color: #fff;
1438
- border-bottom: 1px solid #ccc;
1439
- width: 26px;
1440
- height: 26px;
1441
- line-height: 26px;
1442
- display: block;
1443
- text-align: center;
1444
- text-decoration: none;
1445
- color: black;
1446
- }
1447
- .leaflet-bar a,
1448
- .leaflet-control-layers-toggle {
1449
- background-position: 50% 50%;
1450
- background-repeat: no-repeat;
1451
- display: block;
1452
- }
1453
- .leaflet-bar a:hover,
1454
- .leaflet-bar a:focus {
1455
- background-color: #f4f4f4;
1456
- }
1457
- .leaflet-bar a:first-child {
1458
- border-top-left-radius: 4px;
1459
- border-top-right-radius: 4px;
1460
- }
1461
- .leaflet-bar a:last-child {
1462
- border-bottom-left-radius: 4px;
1463
- border-bottom-right-radius: 4px;
1464
- border-bottom: none;
1465
- }
1466
- .leaflet-bar a.leaflet-disabled {
1467
- cursor: default;
1468
- background-color: #f4f4f4;
1469
- color: #bbb;
1470
- }
1471
-
1472
- .leaflet-touch .leaflet-bar a {
1473
- width: 30px;
1474
- height: 30px;
1475
- line-height: 30px;
1476
- }
1477
- .leaflet-touch .leaflet-bar a:first-child {
1478
- border-top-left-radius: 2px;
1479
- border-top-right-radius: 2px;
1480
- }
1481
- .leaflet-touch .leaflet-bar a:last-child {
1482
- border-bottom-left-radius: 2px;
1483
- border-bottom-right-radius: 2px;
1484
- }
1485
-
1486
- /* zoom control */
1487
-
1488
- .leaflet-control-zoom-in,
1489
- .leaflet-control-zoom-out {
1490
- font: bold 18px 'Lucida Console', Monaco, monospace;
1491
- text-indent: 1px;
1492
- }
1493
-
1494
- .leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
1495
- font-size: 22px;
1496
- }
1497
-
1498
-
1499
- /* layers control */
1500
-
1501
- .leaflet-control-layers {
1502
- box-shadow: 0 1px 5px rgba(0,0,0,0.4);
1503
- background: #fff;
1504
- border-radius: 5px;
1505
- }
1506
- .leaflet-control-layers-toggle {
1507
- 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);
1508
- width: 36px;
1509
- height: 36px;
1510
- }
1511
- .leaflet-retina .leaflet-control-layers-toggle {
1512
- 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=);
1513
- background-size: 26px 26px;
1514
- }
1515
- .leaflet-touch .leaflet-control-layers-toggle {
1516
- width: 44px;
1517
- height: 44px;
1518
- }
1519
- .leaflet-control-layers .leaflet-control-layers-list,
1520
- .leaflet-control-layers-expanded .leaflet-control-layers-toggle {
1521
- display: none;
1522
- }
1523
- .leaflet-control-layers-expanded .leaflet-control-layers-list {
1524
- display: block;
1525
- position: relative;
1526
- }
1527
- .leaflet-control-layers-expanded {
1528
- padding: 6px 10px 6px 6px;
1529
- color: #333;
1530
- background: #fff;
1531
- }
1532
- .leaflet-control-layers-scrollbar {
1533
- overflow-y: scroll;
1534
- overflow-x: hidden;
1535
- padding-right: 5px;
1536
- }
1537
- .leaflet-control-layers-selector {
1538
- margin-top: 2px;
1539
- position: relative;
1540
- top: 1px;
1541
- }
1542
- .leaflet-control-layers label {
1543
- display: block;
1544
- font-size: 13px;
1545
- font-size: 1.08333em;
1546
- }
1547
- .leaflet-control-layers-separator {
1548
- height: 0;
1549
- border-top: 1px solid #ddd;
1550
- margin: 5px -10px 5px -6px;
1551
- }
1552
-
1553
- /* Default icon URLs */
1554
- .leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
1555
- 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=);
1556
- }
1557
-
1558
-
1559
- /* attribution and scale controls */
1560
-
1561
- .leaflet-container .leaflet-control-attribution {
1562
- background: #fff;
1563
- background: rgba(255, 255, 255, 0.8);
1564
- margin: 0;
1565
- }
1566
- .leaflet-control-attribution,
1567
- .leaflet-control-scale-line {
1568
- padding: 0 5px;
1569
- color: #333;
1570
- line-height: 1.4;
1571
- }
1572
- .leaflet-control-attribution a {
1573
- text-decoration: none;
1574
- }
1575
- .leaflet-control-attribution a:hover,
1576
- .leaflet-control-attribution a:focus {
1577
- text-decoration: underline;
1578
- }
1579
- .leaflet-attribution-flag {
1580
- display: inline !important;
1581
- vertical-align: baseline !important;
1582
- width: 1em;
1583
- height: 0.6669em;
1584
- }
1585
- .leaflet-left .leaflet-control-scale {
1586
- margin-left: 5px;
1587
- }
1588
- .leaflet-bottom .leaflet-control-scale {
1589
- margin-bottom: 5px;
1590
- }
1591
- .leaflet-control-scale-line {
1592
- border: 2px solid #777;
1593
- border-top: none;
1594
- line-height: 1.1;
1595
- padding: 2px 5px 1px;
1596
- white-space: nowrap;
1597
- -moz-box-sizing: border-box;
1598
- box-sizing: border-box;
1599
- background: rgba(255, 255, 255, 0.8);
1600
- text-shadow: 1px 1px #fff;
1601
- }
1602
- .leaflet-control-scale-line:not(:first-child) {
1603
- border-top: 2px solid #777;
1604
- border-bottom: none;
1605
- margin-top: -2px;
1606
- }
1607
- .leaflet-control-scale-line:not(:first-child):not(:last-child) {
1608
- border-bottom: 2px solid #777;
1609
- }
1610
-
1611
- .leaflet-touch .leaflet-control-attribution,
1612
- .leaflet-touch .leaflet-control-layers,
1613
- .leaflet-touch .leaflet-bar {
1614
- box-shadow: none;
1615
- }
1616
- .leaflet-touch .leaflet-control-layers,
1617
- .leaflet-touch .leaflet-bar {
1618
- border: 2px solid rgba(0,0,0,0.2);
1619
- background-clip: padding-box;
1620
- }
1621
-
1622
-
1623
- /* popup */
1624
-
1625
- .leaflet-popup {
1626
- position: absolute;
1627
- text-align: center;
1628
- margin-bottom: 20px;
1629
- }
1630
- .leaflet-popup-content-wrapper {
1631
- padding: 1px;
1632
- text-align: left;
1633
- border-radius: 12px;
1634
- }
1635
- .leaflet-popup-content {
1636
- margin: 13px 24px 13px 20px;
1637
- line-height: 1.3;
1638
- font-size: 13px;
1639
- font-size: 1.08333em;
1640
- min-height: 1px;
1641
- }
1642
- .leaflet-popup-content p {
1643
- margin: 17px 0;
1644
- margin: 1.3em 0;
1645
- }
1646
- .leaflet-popup-tip-container {
1647
- width: 40px;
1648
- height: 20px;
1649
- position: absolute;
1650
- left: 50%;
1651
- margin-top: -1px;
1652
- margin-left: -20px;
1653
- overflow: hidden;
1654
- pointer-events: none;
1655
- }
1656
- .leaflet-popup-tip {
1657
- width: 17px;
1658
- height: 17px;
1659
- padding: 1px;
1660
-
1661
- margin: -10px auto 0;
1662
- pointer-events: auto;
1663
-
1664
- -webkit-transform: rotate(45deg);
1665
- -moz-transform: rotate(45deg);
1666
- -ms-transform: rotate(45deg);
1667
- transform: rotate(45deg);
1668
- }
1669
- .leaflet-popup-content-wrapper,
1670
- .leaflet-popup-tip {
1671
- background: white;
1672
- color: #333;
1673
- box-shadow: 0 3px 14px rgba(0,0,0,0.4);
1674
- }
1675
- .leaflet-container a.leaflet-popup-close-button {
1676
- position: absolute;
1677
- top: 0;
1678
- right: 0;
1679
- border: none;
1680
- text-align: center;
1681
- width: 24px;
1682
- height: 24px;
1683
- font: 16px/24px Tahoma, Verdana, sans-serif;
1684
- color: #757575;
1685
- text-decoration: none;
1686
- background: transparent;
1687
- }
1688
- .leaflet-container a.leaflet-popup-close-button:hover,
1689
- .leaflet-container a.leaflet-popup-close-button:focus {
1690
- color: #585858;
1691
- }
1692
- .leaflet-popup-scrolled {
1693
- overflow: auto;
1694
- }
1695
-
1696
- .leaflet-oldie .leaflet-popup-content-wrapper {
1697
- -ms-zoom: 1;
1698
- }
1699
- .leaflet-oldie .leaflet-popup-tip {
1700
- width: 24px;
1701
- margin: 0 auto;
1702
-
1703
- -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
1704
- filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
1705
- }
1706
-
1707
- .leaflet-oldie .leaflet-control-zoom,
1708
- .leaflet-oldie .leaflet-control-layers,
1709
- .leaflet-oldie .leaflet-popup-content-wrapper,
1710
- .leaflet-oldie .leaflet-popup-tip {
1711
- border: 1px solid #999;
1712
- }
1713
-
1714
-
1715
- /* div icon */
1716
-
1717
- .leaflet-div-icon {
1718
- background: #fff;
1719
- border: 1px solid #666;
1720
- }
1721
-
1722
-
1723
- /* Tooltip */
1724
- /* Base styles for the element that has a tooltip */
1725
- .leaflet-tooltip {
1726
- position: absolute;
1727
- padding: 6px;
1728
- background-color: #fff;
1729
- border: 1px solid #fff;
1730
- border-radius: 3px;
1731
- color: #222;
1732
- white-space: nowrap;
1733
- -webkit-user-select: none;
1734
- -moz-user-select: none;
1735
- -ms-user-select: none;
1736
- user-select: none;
1737
- pointer-events: none;
1738
- box-shadow: 0 1px 3px rgba(0,0,0,0.4);
1739
- }
1740
- .leaflet-tooltip.leaflet-interactive {
1741
- cursor: pointer;
1742
- pointer-events: auto;
1743
- }
1744
- .leaflet-tooltip-top:before,
1745
- .leaflet-tooltip-bottom:before,
1746
- .leaflet-tooltip-left:before,
1747
- .leaflet-tooltip-right:before {
1748
- position: absolute;
1749
- pointer-events: none;
1750
- border: 6px solid transparent;
1751
- background: transparent;
1752
- content: "";
1753
- }
1754
-
1755
- /* Directions */
1756
-
1757
- .leaflet-tooltip-bottom {
1758
- margin-top: 6px;
1759
- }
1760
- .leaflet-tooltip-top {
1761
- margin-top: -6px;
1762
- }
1763
- .leaflet-tooltip-bottom:before,
1764
- .leaflet-tooltip-top:before {
1765
- left: 50%;
1766
- margin-left: -6px;
1767
- }
1768
- .leaflet-tooltip-top:before {
1769
- bottom: 0;
1770
- margin-bottom: -12px;
1771
- border-top-color: #fff;
1772
- }
1773
- .leaflet-tooltip-bottom:before {
1774
- top: 0;
1775
- margin-top: -12px;
1776
- margin-left: -6px;
1777
- border-bottom-color: #fff;
1778
- }
1779
- .leaflet-tooltip-left {
1780
- margin-left: -6px;
1781
- }
1782
- .leaflet-tooltip-right {
1783
- margin-left: 6px;
1784
- }
1785
- .leaflet-tooltip-left:before,
1786
- .leaflet-tooltip-right:before {
1787
- top: 50%;
1788
- margin-top: -6px;
1789
- }
1790
- .leaflet-tooltip-left:before {
1791
- right: 0;
1792
- margin-right: -12px;
1793
- border-left-color: #fff;
1794
- }
1795
- .leaflet-tooltip-right:before {
1796
- left: 0;
1797
- margin-left: -12px;
1798
- border-right-color: #fff;
1799
- }
1800
-
1801
- /* Printing */
1802
-
1803
- @media print {
1804
- /* Prevent printers from removing background-images of controls. */
1805
- .leaflet-control {
1806
- -webkit-print-color-adjust: exact;
1807
- print-color-adjust: exact;
1808
- }
1809
- }
1810
1149
 
1811
1150
  #map {
1812
1151
  height: 100%;