@igea/oac_frontend 1.0.91 → 1.0.93
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/package.json +1 -1
- package/src/index.js +55 -5
- package/src/public/css/sparnatural copy.css +1418 -0
- package/src/public/css/sparnatural.css +669 -669
- package/src/public/css/style.css +1 -0
- package/src/public/js/app/vue-investigation.js +1 -1
- package/src/public/v2/css/v2.css +69 -9
- package/src/public/v2/images/banner.pdn +0 -0
- package/src/public/v2/images/banner.png +0 -0
- package/src/public/v2/images/banner_old.png +0 -0
- package/src/public/v2/images/changes.png +0 -0
- package/src/public/v2/images/dip_biologia.jpg +0 -0
- package/src/public/v2/images/eu.png +0 -0
- package/src/public/v2/images/italiadomani.png +0 -0
- package/src/public/v2/images/lgeu.png +0 -0
- package/src/public/v2/images/logo.png +0 -0
- package/src/public/v2/images/logo.svg +76 -0
- package/src/public/v2/images/miur.png +0 -0
- package/src/public/v2/images/sapienza.png +0 -0
- package/src/views/v2/layout.twig +1 -1
- package/src/views/v2/login.twig +37 -0
- package/src/views/v2/partials/footer.twig +28 -6
- package/src/views/v2/partials/header.twig +3 -2
- package/src/views/v2/presentazione/bibliografia.twig +94 -0
- package/src/views/v2/presentazione/contatti.twig +21 -0
- package/src/views/v2/presentazione/crediti.twig +20 -0
- package/src/views/v2/presentazione/finalita.twig +0 -2
- package/src/views/v2/presentazione/modelli.twig +21 -0
- package/src/views/v2/presentazione/partecipanti.twig +1 -1
- package/src/views/v2/search/index.twig +8 -0
|
@@ -199,32 +199,32 @@
|
|
|
199
199
|
/**
|
|
200
200
|
* Color of the criteria arrows (orange)
|
|
201
201
|
**/
|
|
202
|
-
--primary-color-main:
|
|
202
|
+
--primary-color-main: #B1A891;
|
|
203
203
|
|
|
204
204
|
/**
|
|
205
205
|
* Color of the "unselect" buttons in criterias (dark orange)
|
|
206
206
|
**/
|
|
207
|
-
--primary-color-important:
|
|
207
|
+
--primary-color-important: #B1A891 ;
|
|
208
208
|
|
|
209
209
|
/**
|
|
210
210
|
* Color of the bottom : folded variable selector, and of a selected value in a criteria (light orange)
|
|
211
211
|
**/
|
|
212
|
-
--primary-color-medium: rgb(
|
|
212
|
+
--primary-color-medium: rgb(153, 137, 119) ;
|
|
213
213
|
|
|
214
214
|
/**
|
|
215
215
|
* variable selector background & tooltip background (even lighter orange)
|
|
216
216
|
**/
|
|
217
|
-
--primary-color-light:
|
|
217
|
+
--primary-color-light: #dacfb5;
|
|
218
218
|
|
|
219
219
|
/**
|
|
220
220
|
* Color of the options arrow (optional / negation) (strong green)
|
|
221
221
|
**/
|
|
222
|
-
--secondary-color-main:
|
|
222
|
+
--secondary-color-main: #f2e6c9 ;
|
|
223
223
|
|
|
224
224
|
/**
|
|
225
225
|
* Color of the highlight of arrows
|
|
226
226
|
**/
|
|
227
|
-
--secondary-color-important
|
|
227
|
+
--secondary-color-important:#B1A891 ;
|
|
228
228
|
|
|
229
229
|
/**
|
|
230
230
|
* Color of the options arrow when not selected (light green)
|
|
@@ -260,8 +260,8 @@
|
|
|
260
260
|
* Red, Green and Blue components for the background color.
|
|
261
261
|
* An alpha is added to this color at each line (0.1, 0.2, 0.3, etc.)
|
|
262
262
|
**/
|
|
263
|
-
--bg-red:
|
|
264
|
-
--bg-green:
|
|
263
|
+
--bg-red: 177 ;
|
|
264
|
+
--bg-green: 168 ;
|
|
265
265
|
--bg-blue: 153 ;
|
|
266
266
|
|
|
267
267
|
}
|
|
@@ -748,667 +748,667 @@
|
|
|
748
748
|
.select2-container--classic.select2-container--open .select2-dropdown {
|
|
749
749
|
border-color: #5897fb; }
|
|
750
750
|
|
|
751
|
-
/* required styles */
|
|
752
|
-
|
|
753
|
-
.leaflet-pane,
|
|
754
|
-
.leaflet-tile,
|
|
755
|
-
.leaflet-marker-icon,
|
|
756
|
-
.leaflet-marker-shadow,
|
|
757
|
-
.leaflet-tile-container,
|
|
758
|
-
.leaflet-pane > svg,
|
|
759
|
-
.leaflet-pane > canvas,
|
|
760
|
-
.leaflet-zoom-box,
|
|
761
|
-
.leaflet-image-layer,
|
|
762
|
-
.leaflet-layer {
|
|
763
|
-
position: absolute;
|
|
764
|
-
left: 0;
|
|
765
|
-
top: 0;
|
|
766
|
-
}
|
|
767
|
-
.leaflet-container {
|
|
768
|
-
overflow: hidden;
|
|
769
|
-
}
|
|
770
|
-
.leaflet-tile,
|
|
771
|
-
.leaflet-marker-icon,
|
|
772
|
-
.leaflet-marker-shadow {
|
|
773
|
-
-webkit-user-select: none;
|
|
774
|
-
-moz-user-select: none;
|
|
775
|
-
user-select: none;
|
|
776
|
-
-webkit-user-drag: none;
|
|
777
|
-
}
|
|
778
|
-
/* Prevents IE11 from highlighting tiles in blue */
|
|
779
|
-
.leaflet-tile::selection {
|
|
780
|
-
background: transparent;
|
|
781
|
-
}
|
|
782
|
-
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
|
|
783
|
-
.leaflet-safari .leaflet-tile {
|
|
784
|
-
image-rendering: -webkit-optimize-contrast;
|
|
785
|
-
}
|
|
786
|
-
/* hack that prevents hw layers "stretching" when loading new tiles */
|
|
787
|
-
.leaflet-safari .leaflet-tile-container {
|
|
788
|
-
width: 1600px;
|
|
789
|
-
height: 1600px;
|
|
790
|
-
-webkit-transform-origin: 0 0;
|
|
791
|
-
}
|
|
792
|
-
.leaflet-marker-icon,
|
|
793
|
-
.leaflet-marker-shadow {
|
|
794
|
-
display: block;
|
|
795
|
-
}
|
|
796
|
-
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
|
|
797
|
-
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
|
|
798
|
-
.leaflet-container .leaflet-overlay-pane svg {
|
|
799
|
-
max-width: none !important;
|
|
800
|
-
max-height: none !important;
|
|
801
|
-
}
|
|
802
|
-
.leaflet-container .leaflet-marker-pane img,
|
|
803
|
-
.leaflet-container .leaflet-shadow-pane img,
|
|
804
|
-
.leaflet-container .leaflet-tile-pane img,
|
|
805
|
-
.leaflet-container img.leaflet-image-layer,
|
|
806
|
-
.leaflet-container .leaflet-tile {
|
|
807
|
-
max-width: none !important;
|
|
808
|
-
max-height: none !important;
|
|
809
|
-
width: auto;
|
|
810
|
-
padding: 0;
|
|
811
|
-
}
|
|
812
|
-
|
|
813
|
-
.leaflet-container img.leaflet-tile {
|
|
814
|
-
/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
|
|
815
|
-
mix-blend-mode: plus-lighter;
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
.leaflet-container.leaflet-touch-zoom {
|
|
819
|
-
-ms-touch-action: pan-x pan-y;
|
|
820
|
-
touch-action: pan-x pan-y;
|
|
821
|
-
}
|
|
822
|
-
.leaflet-container.leaflet-touch-drag {
|
|
823
|
-
-ms-touch-action: pinch-zoom;
|
|
824
|
-
/* Fallback for FF which doesn't support pinch-zoom */
|
|
825
|
-
touch-action: none;
|
|
826
|
-
touch-action: pinch-zoom;
|
|
827
|
-
}
|
|
828
|
-
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
|
|
829
|
-
-ms-touch-action: none;
|
|
830
|
-
touch-action: none;
|
|
831
|
-
}
|
|
832
|
-
.leaflet-container {
|
|
833
|
-
-webkit-tap-highlight-color: transparent;
|
|
834
|
-
}
|
|
835
|
-
.leaflet-container a {
|
|
836
|
-
-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
|
|
837
|
-
}
|
|
838
|
-
.leaflet-tile {
|
|
839
|
-
filter: inherit;
|
|
840
|
-
visibility: hidden;
|
|
841
|
-
}
|
|
842
|
-
.leaflet-tile-loaded {
|
|
843
|
-
visibility: inherit;
|
|
844
|
-
}
|
|
845
|
-
.leaflet-zoom-box {
|
|
846
|
-
width: 0;
|
|
847
|
-
height: 0;
|
|
848
|
-
-moz-box-sizing: border-box;
|
|
849
|
-
box-sizing: border-box;
|
|
850
|
-
z-index: 800;
|
|
851
|
-
}
|
|
852
|
-
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
|
|
853
|
-
.leaflet-overlay-pane svg {
|
|
854
|
-
-moz-user-select: none;
|
|
855
|
-
}
|
|
856
|
-
|
|
857
|
-
.leaflet-pane { z-index: 400; }
|
|
858
|
-
|
|
859
|
-
.leaflet-tile-pane { z-index: 200; }
|
|
860
|
-
.leaflet-overlay-pane { z-index: 400; }
|
|
861
|
-
.leaflet-shadow-pane { z-index: 500; }
|
|
862
|
-
.leaflet-marker-pane { z-index: 600; }
|
|
863
|
-
.leaflet-tooltip-pane { z-index: 650; }
|
|
864
|
-
.leaflet-popup-pane { z-index: 700; }
|
|
865
|
-
|
|
866
|
-
.leaflet-map-pane canvas { z-index: 100; }
|
|
867
|
-
.leaflet-map-pane svg { z-index: 200; }
|
|
868
|
-
|
|
869
|
-
.leaflet-vml-shape {
|
|
870
|
-
width: 1px;
|
|
871
|
-
height: 1px;
|
|
872
|
-
}
|
|
873
|
-
.lvml {
|
|
874
|
-
behavior: url(#default#VML);
|
|
875
|
-
display: inline-block;
|
|
876
|
-
position: absolute;
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
/* control positioning */
|
|
881
|
-
|
|
882
|
-
.leaflet-control {
|
|
883
|
-
position: relative;
|
|
884
|
-
z-index: 800;
|
|
885
|
-
pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
|
|
886
|
-
pointer-events: auto;
|
|
887
|
-
}
|
|
888
|
-
.leaflet-top,
|
|
889
|
-
.leaflet-bottom {
|
|
890
|
-
position: absolute;
|
|
891
|
-
z-index: 1000;
|
|
892
|
-
pointer-events: none;
|
|
893
|
-
}
|
|
894
|
-
.leaflet-top {
|
|
895
|
-
top: 0;
|
|
896
|
-
}
|
|
897
|
-
.leaflet-right {
|
|
898
|
-
right: 0;
|
|
899
|
-
}
|
|
900
|
-
.leaflet-bottom {
|
|
901
|
-
bottom: 0;
|
|
902
|
-
}
|
|
903
|
-
.leaflet-left {
|
|
904
|
-
left: 0;
|
|
905
|
-
}
|
|
906
|
-
.leaflet-control {
|
|
907
|
-
float: left;
|
|
908
|
-
clear: both;
|
|
909
|
-
}
|
|
910
|
-
.leaflet-right .leaflet-control {
|
|
911
|
-
float: right;
|
|
912
|
-
}
|
|
913
|
-
.leaflet-top .leaflet-control {
|
|
914
|
-
margin-top: 10px;
|
|
915
|
-
}
|
|
916
|
-
.leaflet-bottom .leaflet-control {
|
|
917
|
-
margin-bottom: 10px;
|
|
918
|
-
}
|
|
919
|
-
.leaflet-left .leaflet-control {
|
|
920
|
-
margin-left: 10px;
|
|
921
|
-
}
|
|
922
|
-
.leaflet-right .leaflet-control {
|
|
923
|
-
margin-right: 10px;
|
|
924
|
-
}
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
/* zoom and fade animations */
|
|
928
|
-
|
|
929
|
-
.leaflet-fade-anim .leaflet-popup {
|
|
930
|
-
opacity: 0;
|
|
931
|
-
-webkit-transition: opacity 0.2s linear;
|
|
932
|
-
-moz-transition: opacity 0.2s linear;
|
|
933
|
-
transition: opacity 0.2s linear;
|
|
934
|
-
}
|
|
935
|
-
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
|
|
936
|
-
opacity: 1;
|
|
937
|
-
}
|
|
938
|
-
.leaflet-zoom-animated {
|
|
939
|
-
-webkit-transform-origin: 0 0;
|
|
940
|
-
-ms-transform-origin: 0 0;
|
|
941
|
-
transform-origin: 0 0;
|
|
942
|
-
}
|
|
943
|
-
svg.leaflet-zoom-animated {
|
|
944
|
-
will-change: transform;
|
|
945
|
-
}
|
|
946
|
-
|
|
947
|
-
.leaflet-zoom-anim .leaflet-zoom-animated {
|
|
948
|
-
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
|
|
949
|
-
-moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
|
|
950
|
-
transition: transform 0.25s cubic-bezier(0,0,0.25,1);
|
|
951
|
-
}
|
|
952
|
-
.leaflet-zoom-anim .leaflet-tile,
|
|
953
|
-
.leaflet-pan-anim .leaflet-tile {
|
|
954
|
-
-webkit-transition: none;
|
|
955
|
-
-moz-transition: none;
|
|
956
|
-
transition: none;
|
|
957
|
-
}
|
|
958
|
-
|
|
959
|
-
.leaflet-zoom-anim .leaflet-zoom-hide {
|
|
960
|
-
visibility: hidden;
|
|
961
|
-
}
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
/* cursors */
|
|
965
|
-
|
|
966
|
-
.leaflet-interactive {
|
|
967
|
-
cursor: pointer;
|
|
968
|
-
}
|
|
969
|
-
.leaflet-grab {
|
|
970
|
-
cursor: -webkit-grab;
|
|
971
|
-
cursor: -moz-grab;
|
|
972
|
-
cursor: grab;
|
|
973
|
-
}
|
|
974
|
-
.leaflet-crosshair,
|
|
975
|
-
.leaflet-crosshair .leaflet-interactive {
|
|
976
|
-
cursor: crosshair;
|
|
977
|
-
}
|
|
978
|
-
.leaflet-popup-pane,
|
|
979
|
-
.leaflet-control {
|
|
980
|
-
cursor: auto;
|
|
981
|
-
}
|
|
982
|
-
.leaflet-dragging .leaflet-grab,
|
|
983
|
-
.leaflet-dragging .leaflet-grab .leaflet-interactive,
|
|
984
|
-
.leaflet-dragging .leaflet-marker-draggable {
|
|
985
|
-
cursor: move;
|
|
986
|
-
cursor: -webkit-grabbing;
|
|
987
|
-
cursor: -moz-grabbing;
|
|
988
|
-
cursor: grabbing;
|
|
989
|
-
}
|
|
990
|
-
|
|
991
|
-
/* marker & overlays interactivity */
|
|
992
|
-
.leaflet-marker-icon,
|
|
993
|
-
.leaflet-marker-shadow,
|
|
994
|
-
.leaflet-image-layer,
|
|
995
|
-
.leaflet-pane > svg path,
|
|
996
|
-
.leaflet-tile-container {
|
|
997
|
-
pointer-events: none;
|
|
998
|
-
}
|
|
999
|
-
|
|
1000
|
-
.leaflet-marker-icon.leaflet-interactive,
|
|
1001
|
-
.leaflet-image-layer.leaflet-interactive,
|
|
1002
|
-
.leaflet-pane > svg path.leaflet-interactive,
|
|
1003
|
-
svg.leaflet-image-layer.leaflet-interactive path {
|
|
1004
|
-
pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
|
|
1005
|
-
pointer-events: auto;
|
|
1006
|
-
}
|
|
1007
|
-
|
|
1008
|
-
/* visual tweaks */
|
|
1009
|
-
|
|
1010
|
-
.leaflet-container {
|
|
1011
|
-
background: #ddd;
|
|
1012
|
-
outline-offset: 1px;
|
|
1013
|
-
}
|
|
1014
|
-
.leaflet-container a {
|
|
1015
|
-
color: #0078A8;
|
|
1016
|
-
}
|
|
1017
|
-
.leaflet-zoom-box {
|
|
1018
|
-
border: 2px dotted #38f;
|
|
1019
|
-
background: rgba(255,255,255,0.5);
|
|
1020
|
-
}
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
/* general typography */
|
|
1024
|
-
.leaflet-container {
|
|
1025
|
-
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
1026
|
-
font-size: 12px;
|
|
1027
|
-
font-size: 0.75rem;
|
|
1028
|
-
line-height: 1.5;
|
|
1029
|
-
}
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
/* general toolbar styles */
|
|
1033
|
-
|
|
1034
|
-
.leaflet-bar {
|
|
1035
|
-
box-shadow: 0 1px 5px rgba(0,0,0,0.65);
|
|
1036
|
-
border-radius: 4px;
|
|
1037
|
-
}
|
|
1038
|
-
.leaflet-bar a {
|
|
1039
|
-
background-color: #fff;
|
|
1040
|
-
border-bottom: 1px solid #ccc;
|
|
1041
|
-
width: 26px;
|
|
1042
|
-
height: 26px;
|
|
1043
|
-
line-height: 26px;
|
|
1044
|
-
display: block;
|
|
1045
|
-
text-align: center;
|
|
1046
|
-
text-decoration: none;
|
|
1047
|
-
color: black;
|
|
1048
|
-
}
|
|
1049
|
-
.leaflet-bar a,
|
|
1050
|
-
.leaflet-control-layers-toggle {
|
|
1051
|
-
background-position: 50% 50%;
|
|
1052
|
-
background-repeat: no-repeat;
|
|
1053
|
-
display: block;
|
|
1054
|
-
}
|
|
1055
|
-
.leaflet-bar a:hover,
|
|
1056
|
-
.leaflet-bar a:focus {
|
|
1057
|
-
background-color: #f4f4f4;
|
|
1058
|
-
}
|
|
1059
|
-
.leaflet-bar a:first-child {
|
|
1060
|
-
border-top-left-radius: 4px;
|
|
1061
|
-
border-top-right-radius: 4px;
|
|
1062
|
-
}
|
|
1063
|
-
.leaflet-bar a:last-child {
|
|
1064
|
-
border-bottom-left-radius: 4px;
|
|
1065
|
-
border-bottom-right-radius: 4px;
|
|
1066
|
-
border-bottom: none;
|
|
1067
|
-
}
|
|
1068
|
-
.leaflet-bar a.leaflet-disabled {
|
|
1069
|
-
cursor: default;
|
|
1070
|
-
background-color: #f4f4f4;
|
|
1071
|
-
color: #bbb;
|
|
1072
|
-
}
|
|
1073
|
-
|
|
1074
|
-
.leaflet-touch .leaflet-bar a {
|
|
1075
|
-
width: 30px;
|
|
1076
|
-
height: 30px;
|
|
1077
|
-
line-height: 30px;
|
|
1078
|
-
}
|
|
1079
|
-
.leaflet-touch .leaflet-bar a:first-child {
|
|
1080
|
-
border-top-left-radius: 2px;
|
|
1081
|
-
border-top-right-radius: 2px;
|
|
1082
|
-
}
|
|
1083
|
-
.leaflet-touch .leaflet-bar a:last-child {
|
|
1084
|
-
border-bottom-left-radius: 2px;
|
|
1085
|
-
border-bottom-right-radius: 2px;
|
|
1086
|
-
}
|
|
1087
|
-
|
|
1088
|
-
/* zoom control */
|
|
1089
|
-
|
|
1090
|
-
.leaflet-control-zoom-in,
|
|
1091
|
-
.leaflet-control-zoom-out {
|
|
1092
|
-
font: bold 18px 'Lucida Console', Monaco, monospace;
|
|
1093
|
-
text-indent: 1px;
|
|
1094
|
-
}
|
|
1095
|
-
|
|
1096
|
-
.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
|
|
1097
|
-
font-size: 22px;
|
|
1098
|
-
}
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
/* layers control */
|
|
1102
|
-
|
|
1103
|
-
.leaflet-control-layers {
|
|
1104
|
-
box-shadow: 0 1px 5px rgba(0,0,0,0.4);
|
|
1105
|
-
background: #fff;
|
|
1106
|
-
border-radius: 5px;
|
|
1107
|
-
}
|
|
1108
|
-
.leaflet-control-layers-toggle {
|
|
1109
|
-
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);
|
|
1110
|
-
width: 36px;
|
|
1111
|
-
height: 36px;
|
|
1112
|
-
}
|
|
1113
|
-
.leaflet-retina .leaflet-control-layers-toggle {
|
|
1114
|
-
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=);
|
|
1115
|
-
background-size: 26px 26px;
|
|
1116
|
-
}
|
|
1117
|
-
.leaflet-touch .leaflet-control-layers-toggle {
|
|
1118
|
-
width: 44px;
|
|
1119
|
-
height: 44px;
|
|
1120
|
-
}
|
|
1121
|
-
.leaflet-control-layers .leaflet-control-layers-list,
|
|
1122
|
-
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
|
|
1123
|
-
display: none;
|
|
1124
|
-
}
|
|
1125
|
-
.leaflet-control-layers-expanded .leaflet-control-layers-list {
|
|
1126
|
-
display: block;
|
|
1127
|
-
position: relative;
|
|
1128
|
-
}
|
|
1129
|
-
.leaflet-control-layers-expanded {
|
|
1130
|
-
padding: 6px 10px 6px 6px;
|
|
1131
|
-
color: #333;
|
|
1132
|
-
background: #fff;
|
|
1133
|
-
}
|
|
1134
|
-
.leaflet-control-layers-scrollbar {
|
|
1135
|
-
overflow-y: scroll;
|
|
1136
|
-
overflow-x: hidden;
|
|
1137
|
-
padding-right: 5px;
|
|
1138
|
-
}
|
|
1139
|
-
.leaflet-control-layers-selector {
|
|
1140
|
-
margin-top: 2px;
|
|
1141
|
-
position: relative;
|
|
1142
|
-
top: 1px;
|
|
1143
|
-
}
|
|
1144
|
-
.leaflet-control-layers label {
|
|
1145
|
-
display: block;
|
|
1146
|
-
font-size: 13px;
|
|
1147
|
-
font-size: 1.08333em;
|
|
1148
|
-
}
|
|
1149
|
-
.leaflet-control-layers-separator {
|
|
1150
|
-
height: 0;
|
|
1151
|
-
border-top: 1px solid #ddd;
|
|
1152
|
-
margin: 5px -10px 5px -6px;
|
|
1153
|
-
}
|
|
1154
|
-
|
|
1155
|
-
/* Default icon URLs */
|
|
1156
|
-
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
|
|
1157
|
-
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=);
|
|
1158
|
-
}
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
/* attribution and scale controls */
|
|
1162
|
-
|
|
1163
|
-
.leaflet-container .leaflet-control-attribution {
|
|
1164
|
-
background: #fff;
|
|
1165
|
-
background: rgba(255, 255, 255, 0.8);
|
|
1166
|
-
margin: 0;
|
|
1167
|
-
}
|
|
1168
|
-
.leaflet-control-attribution,
|
|
1169
|
-
.leaflet-control-scale-line {
|
|
1170
|
-
padding: 0 5px;
|
|
1171
|
-
color: #333;
|
|
1172
|
-
line-height: 1.4;
|
|
1173
|
-
}
|
|
1174
|
-
.leaflet-control-attribution a {
|
|
1175
|
-
text-decoration: none;
|
|
1176
|
-
}
|
|
1177
|
-
.leaflet-control-attribution a:hover,
|
|
1178
|
-
.leaflet-control-attribution a:focus {
|
|
1179
|
-
text-decoration: underline;
|
|
1180
|
-
}
|
|
1181
|
-
.leaflet-attribution-flag {
|
|
1182
|
-
display: inline !important;
|
|
1183
|
-
vertical-align: baseline !important;
|
|
1184
|
-
width: 1em;
|
|
1185
|
-
height: 0.6669em;
|
|
1186
|
-
}
|
|
1187
|
-
.leaflet-left .leaflet-control-scale {
|
|
1188
|
-
margin-left: 5px;
|
|
1189
|
-
}
|
|
1190
|
-
.leaflet-bottom .leaflet-control-scale {
|
|
1191
|
-
margin-bottom: 5px;
|
|
1192
|
-
}
|
|
1193
|
-
.leaflet-control-scale-line {
|
|
1194
|
-
border: 2px solid #777;
|
|
1195
|
-
border-top: none;
|
|
1196
|
-
line-height: 1.1;
|
|
1197
|
-
padding: 2px 5px 1px;
|
|
1198
|
-
white-space: nowrap;
|
|
1199
|
-
-moz-box-sizing: border-box;
|
|
1200
|
-
box-sizing: border-box;
|
|
1201
|
-
background: rgba(255, 255, 255, 0.8);
|
|
1202
|
-
text-shadow: 1px 1px #fff;
|
|
1203
|
-
}
|
|
1204
|
-
.leaflet-control-scale-line:not(:first-child) {
|
|
1205
|
-
border-top: 2px solid #777;
|
|
1206
|
-
border-bottom: none;
|
|
1207
|
-
margin-top: -2px;
|
|
1208
|
-
}
|
|
1209
|
-
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
|
|
1210
|
-
border-bottom: 2px solid #777;
|
|
1211
|
-
}
|
|
1212
|
-
|
|
1213
|
-
.leaflet-touch .leaflet-control-attribution,
|
|
1214
|
-
.leaflet-touch .leaflet-control-layers,
|
|
1215
|
-
.leaflet-touch .leaflet-bar {
|
|
1216
|
-
box-shadow: none;
|
|
1217
|
-
}
|
|
1218
|
-
.leaflet-touch .leaflet-control-layers,
|
|
1219
|
-
.leaflet-touch .leaflet-bar {
|
|
1220
|
-
border: 2px solid rgba(0,0,0,0.2);
|
|
1221
|
-
background-clip: padding-box;
|
|
1222
|
-
}
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
/* popup */
|
|
1226
|
-
|
|
1227
|
-
.leaflet-popup {
|
|
1228
|
-
position: absolute;
|
|
1229
|
-
text-align: center;
|
|
1230
|
-
margin-bottom: 20px;
|
|
1231
|
-
}
|
|
1232
|
-
.leaflet-popup-content-wrapper {
|
|
1233
|
-
padding: 1px;
|
|
1234
|
-
text-align: left;
|
|
1235
|
-
border-radius: 12px;
|
|
1236
|
-
}
|
|
1237
|
-
.leaflet-popup-content {
|
|
1238
|
-
margin: 13px 24px 13px 20px;
|
|
1239
|
-
line-height: 1.3;
|
|
1240
|
-
font-size: 13px;
|
|
1241
|
-
font-size: 1.08333em;
|
|
1242
|
-
min-height: 1px;
|
|
1243
|
-
}
|
|
1244
|
-
.leaflet-popup-content p {
|
|
1245
|
-
margin: 17px 0;
|
|
1246
|
-
margin: 1.3em 0;
|
|
1247
|
-
}
|
|
1248
|
-
.leaflet-popup-tip-container {
|
|
1249
|
-
width: 40px;
|
|
1250
|
-
height: 20px;
|
|
1251
|
-
position: absolute;
|
|
1252
|
-
left: 50%;
|
|
1253
|
-
margin-top: -1px;
|
|
1254
|
-
margin-left: -20px;
|
|
1255
|
-
overflow: hidden;
|
|
1256
|
-
pointer-events: none;
|
|
1257
|
-
}
|
|
1258
|
-
.leaflet-popup-tip {
|
|
1259
|
-
width: 17px;
|
|
1260
|
-
height: 17px;
|
|
1261
|
-
padding: 1px;
|
|
1262
|
-
|
|
1263
|
-
margin: -10px auto 0;
|
|
1264
|
-
pointer-events: auto;
|
|
1265
|
-
|
|
1266
|
-
-webkit-transform: rotate(45deg);
|
|
1267
|
-
-moz-transform: rotate(45deg);
|
|
1268
|
-
-ms-transform: rotate(45deg);
|
|
1269
|
-
transform: rotate(45deg);
|
|
1270
|
-
}
|
|
1271
|
-
.leaflet-popup-content-wrapper,
|
|
1272
|
-
.leaflet-popup-tip {
|
|
1273
|
-
background: white;
|
|
1274
|
-
color: #333;
|
|
1275
|
-
box-shadow: 0 3px 14px rgba(0,0,0,0.4);
|
|
1276
|
-
}
|
|
1277
|
-
.leaflet-container a.leaflet-popup-close-button {
|
|
1278
|
-
position: absolute;
|
|
1279
|
-
top: 0;
|
|
1280
|
-
right: 0;
|
|
1281
|
-
border: none;
|
|
1282
|
-
text-align: center;
|
|
1283
|
-
width: 24px;
|
|
1284
|
-
height: 24px;
|
|
1285
|
-
font: 16px/24px Tahoma, Verdana, sans-serif;
|
|
1286
|
-
color: #757575;
|
|
1287
|
-
text-decoration: none;
|
|
1288
|
-
background: transparent;
|
|
1289
|
-
}
|
|
1290
|
-
.leaflet-container a.leaflet-popup-close-button:hover,
|
|
1291
|
-
.leaflet-container a.leaflet-popup-close-button:focus {
|
|
1292
|
-
color: #585858;
|
|
1293
|
-
}
|
|
1294
|
-
.leaflet-popup-scrolled {
|
|
1295
|
-
overflow: auto;
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
|
-
.leaflet-oldie .leaflet-popup-content-wrapper {
|
|
1299
|
-
-ms-zoom: 1;
|
|
1300
|
-
}
|
|
1301
|
-
.leaflet-oldie .leaflet-popup-tip {
|
|
1302
|
-
width: 24px;
|
|
1303
|
-
margin: 0 auto;
|
|
1304
|
-
|
|
1305
|
-
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
|
|
1306
|
-
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
|
|
1307
|
-
}
|
|
1308
|
-
|
|
1309
|
-
.leaflet-oldie .leaflet-control-zoom,
|
|
1310
|
-
.leaflet-oldie .leaflet-control-layers,
|
|
1311
|
-
.leaflet-oldie .leaflet-popup-content-wrapper,
|
|
1312
|
-
.leaflet-oldie .leaflet-popup-tip {
|
|
1313
|
-
border: 1px solid #999;
|
|
1314
|
-
}
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
/* div icon */
|
|
1318
|
-
|
|
1319
|
-
.leaflet-div-icon {
|
|
1320
|
-
background: #fff;
|
|
1321
|
-
border: 1px solid #666;
|
|
1322
|
-
}
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
/* Tooltip */
|
|
1326
|
-
/* Base styles for the element that has a tooltip */
|
|
1327
|
-
.leaflet-tooltip {
|
|
1328
|
-
position: absolute;
|
|
1329
|
-
padding: 6px;
|
|
1330
|
-
background-color: #fff;
|
|
1331
|
-
border: 1px solid #fff;
|
|
1332
|
-
border-radius: 3px;
|
|
1333
|
-
color: #222;
|
|
1334
|
-
white-space: nowrap;
|
|
1335
|
-
-webkit-user-select: none;
|
|
1336
|
-
-moz-user-select: none;
|
|
1337
|
-
-ms-user-select: none;
|
|
1338
|
-
user-select: none;
|
|
1339
|
-
pointer-events: none;
|
|
1340
|
-
box-shadow: 0 1px 3px rgba(0,0,0,0.4);
|
|
1341
|
-
}
|
|
1342
|
-
.leaflet-tooltip.leaflet-interactive {
|
|
1343
|
-
cursor: pointer;
|
|
1344
|
-
pointer-events: auto;
|
|
1345
|
-
}
|
|
1346
|
-
.leaflet-tooltip-top:before,
|
|
1347
|
-
.leaflet-tooltip-bottom:before,
|
|
1348
|
-
.leaflet-tooltip-left:before,
|
|
1349
|
-
.leaflet-tooltip-right:before {
|
|
1350
|
-
position: absolute;
|
|
1351
|
-
pointer-events: none;
|
|
1352
|
-
border: 6px solid transparent;
|
|
1353
|
-
background: transparent;
|
|
1354
|
-
content: "";
|
|
1355
|
-
}
|
|
1356
|
-
|
|
1357
|
-
/* Directions */
|
|
1358
|
-
|
|
1359
|
-
.leaflet-tooltip-bottom {
|
|
1360
|
-
margin-top: 6px;
|
|
1361
|
-
}
|
|
1362
|
-
.leaflet-tooltip-top {
|
|
1363
|
-
margin-top: -6px;
|
|
1364
|
-
}
|
|
1365
|
-
.leaflet-tooltip-bottom:before,
|
|
1366
|
-
.leaflet-tooltip-top:before {
|
|
1367
|
-
left: 50%;
|
|
1368
|
-
margin-left: -6px;
|
|
1369
|
-
}
|
|
1370
|
-
.leaflet-tooltip-top:before {
|
|
1371
|
-
bottom: 0;
|
|
1372
|
-
margin-bottom: -12px;
|
|
1373
|
-
border-top-color: #fff;
|
|
1374
|
-
}
|
|
1375
|
-
.leaflet-tooltip-bottom:before {
|
|
1376
|
-
top: 0;
|
|
1377
|
-
margin-top: -12px;
|
|
1378
|
-
margin-left: -6px;
|
|
1379
|
-
border-bottom-color: #fff;
|
|
1380
|
-
}
|
|
1381
|
-
.leaflet-tooltip-left {
|
|
1382
|
-
margin-left: -6px;
|
|
1383
|
-
}
|
|
1384
|
-
.leaflet-tooltip-right {
|
|
1385
|
-
margin-left: 6px;
|
|
1386
|
-
}
|
|
1387
|
-
.leaflet-tooltip-left:before,
|
|
1388
|
-
.leaflet-tooltip-right:before {
|
|
1389
|
-
top: 50%;
|
|
1390
|
-
margin-top: -6px;
|
|
1391
|
-
}
|
|
1392
|
-
.leaflet-tooltip-left:before {
|
|
1393
|
-
right: 0;
|
|
1394
|
-
margin-right: -12px;
|
|
1395
|
-
border-left-color: #fff;
|
|
1396
|
-
}
|
|
1397
|
-
.leaflet-tooltip-right:before {
|
|
1398
|
-
left: 0;
|
|
1399
|
-
margin-left: -12px;
|
|
1400
|
-
border-right-color: #fff;
|
|
1401
|
-
}
|
|
1402
|
-
|
|
1403
|
-
/* Printing */
|
|
1404
|
-
|
|
1405
|
-
@media print {
|
|
1406
|
-
/* Prevent printers from removing background-images of controls. */
|
|
1407
|
-
.leaflet-control {
|
|
1408
|
-
-webkit-print-color-adjust: exact;
|
|
1409
|
-
print-color-adjust: exact;
|
|
1410
|
-
}
|
|
1411
|
-
}
|
|
751
|
+
/* required styles */
|
|
752
|
+
|
|
753
|
+
.leaflet-pane,
|
|
754
|
+
.leaflet-tile,
|
|
755
|
+
.leaflet-marker-icon,
|
|
756
|
+
.leaflet-marker-shadow,
|
|
757
|
+
.leaflet-tile-container,
|
|
758
|
+
.leaflet-pane > svg,
|
|
759
|
+
.leaflet-pane > canvas,
|
|
760
|
+
.leaflet-zoom-box,
|
|
761
|
+
.leaflet-image-layer,
|
|
762
|
+
.leaflet-layer {
|
|
763
|
+
position: absolute;
|
|
764
|
+
left: 0;
|
|
765
|
+
top: 0;
|
|
766
|
+
}
|
|
767
|
+
.leaflet-container {
|
|
768
|
+
overflow: hidden;
|
|
769
|
+
}
|
|
770
|
+
.leaflet-tile,
|
|
771
|
+
.leaflet-marker-icon,
|
|
772
|
+
.leaflet-marker-shadow {
|
|
773
|
+
-webkit-user-select: none;
|
|
774
|
+
-moz-user-select: none;
|
|
775
|
+
user-select: none;
|
|
776
|
+
-webkit-user-drag: none;
|
|
777
|
+
}
|
|
778
|
+
/* Prevents IE11 from highlighting tiles in blue */
|
|
779
|
+
.leaflet-tile::selection {
|
|
780
|
+
background: transparent;
|
|
781
|
+
}
|
|
782
|
+
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
|
|
783
|
+
.leaflet-safari .leaflet-tile {
|
|
784
|
+
image-rendering: -webkit-optimize-contrast;
|
|
785
|
+
}
|
|
786
|
+
/* hack that prevents hw layers "stretching" when loading new tiles */
|
|
787
|
+
.leaflet-safari .leaflet-tile-container {
|
|
788
|
+
width: 1600px;
|
|
789
|
+
height: 1600px;
|
|
790
|
+
-webkit-transform-origin: 0 0;
|
|
791
|
+
}
|
|
792
|
+
.leaflet-marker-icon,
|
|
793
|
+
.leaflet-marker-shadow {
|
|
794
|
+
display: block;
|
|
795
|
+
}
|
|
796
|
+
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
|
|
797
|
+
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
|
|
798
|
+
.leaflet-container .leaflet-overlay-pane svg {
|
|
799
|
+
max-width: none !important;
|
|
800
|
+
max-height: none !important;
|
|
801
|
+
}
|
|
802
|
+
.leaflet-container .leaflet-marker-pane img,
|
|
803
|
+
.leaflet-container .leaflet-shadow-pane img,
|
|
804
|
+
.leaflet-container .leaflet-tile-pane img,
|
|
805
|
+
.leaflet-container img.leaflet-image-layer,
|
|
806
|
+
.leaflet-container .leaflet-tile {
|
|
807
|
+
max-width: none !important;
|
|
808
|
+
max-height: none !important;
|
|
809
|
+
width: auto;
|
|
810
|
+
padding: 0;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
.leaflet-container img.leaflet-tile {
|
|
814
|
+
/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
|
|
815
|
+
mix-blend-mode: plus-lighter;
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
.leaflet-container.leaflet-touch-zoom {
|
|
819
|
+
-ms-touch-action: pan-x pan-y;
|
|
820
|
+
touch-action: pan-x pan-y;
|
|
821
|
+
}
|
|
822
|
+
.leaflet-container.leaflet-touch-drag {
|
|
823
|
+
-ms-touch-action: pinch-zoom;
|
|
824
|
+
/* Fallback for FF which doesn't support pinch-zoom */
|
|
825
|
+
touch-action: none;
|
|
826
|
+
touch-action: pinch-zoom;
|
|
827
|
+
}
|
|
828
|
+
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
|
|
829
|
+
-ms-touch-action: none;
|
|
830
|
+
touch-action: none;
|
|
831
|
+
}
|
|
832
|
+
.leaflet-container {
|
|
833
|
+
-webkit-tap-highlight-color: transparent;
|
|
834
|
+
}
|
|
835
|
+
.leaflet-container a {
|
|
836
|
+
-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
|
|
837
|
+
}
|
|
838
|
+
.leaflet-tile {
|
|
839
|
+
filter: inherit;
|
|
840
|
+
visibility: hidden;
|
|
841
|
+
}
|
|
842
|
+
.leaflet-tile-loaded {
|
|
843
|
+
visibility: inherit;
|
|
844
|
+
}
|
|
845
|
+
.leaflet-zoom-box {
|
|
846
|
+
width: 0;
|
|
847
|
+
height: 0;
|
|
848
|
+
-moz-box-sizing: border-box;
|
|
849
|
+
box-sizing: border-box;
|
|
850
|
+
z-index: 800;
|
|
851
|
+
}
|
|
852
|
+
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
|
|
853
|
+
.leaflet-overlay-pane svg {
|
|
854
|
+
-moz-user-select: none;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
.leaflet-pane { z-index: 400; }
|
|
858
|
+
|
|
859
|
+
.leaflet-tile-pane { z-index: 200; }
|
|
860
|
+
.leaflet-overlay-pane { z-index: 400; }
|
|
861
|
+
.leaflet-shadow-pane { z-index: 500; }
|
|
862
|
+
.leaflet-marker-pane { z-index: 600; }
|
|
863
|
+
.leaflet-tooltip-pane { z-index: 650; }
|
|
864
|
+
.leaflet-popup-pane { z-index: 700; }
|
|
865
|
+
|
|
866
|
+
.leaflet-map-pane canvas { z-index: 100; }
|
|
867
|
+
.leaflet-map-pane svg { z-index: 200; }
|
|
868
|
+
|
|
869
|
+
.leaflet-vml-shape {
|
|
870
|
+
width: 1px;
|
|
871
|
+
height: 1px;
|
|
872
|
+
}
|
|
873
|
+
.lvml {
|
|
874
|
+
behavior: url(#default#VML);
|
|
875
|
+
display: inline-block;
|
|
876
|
+
position: absolute;
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
|
|
880
|
+
/* control positioning */
|
|
881
|
+
|
|
882
|
+
.leaflet-control {
|
|
883
|
+
position: relative;
|
|
884
|
+
z-index: 800;
|
|
885
|
+
pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
|
|
886
|
+
pointer-events: auto;
|
|
887
|
+
}
|
|
888
|
+
.leaflet-top,
|
|
889
|
+
.leaflet-bottom {
|
|
890
|
+
position: absolute;
|
|
891
|
+
z-index: 1000;
|
|
892
|
+
pointer-events: none;
|
|
893
|
+
}
|
|
894
|
+
.leaflet-top {
|
|
895
|
+
top: 0;
|
|
896
|
+
}
|
|
897
|
+
.leaflet-right {
|
|
898
|
+
right: 0;
|
|
899
|
+
}
|
|
900
|
+
.leaflet-bottom {
|
|
901
|
+
bottom: 0;
|
|
902
|
+
}
|
|
903
|
+
.leaflet-left {
|
|
904
|
+
left: 0;
|
|
905
|
+
}
|
|
906
|
+
.leaflet-control {
|
|
907
|
+
float: left;
|
|
908
|
+
clear: both;
|
|
909
|
+
}
|
|
910
|
+
.leaflet-right .leaflet-control {
|
|
911
|
+
float: right;
|
|
912
|
+
}
|
|
913
|
+
.leaflet-top .leaflet-control {
|
|
914
|
+
margin-top: 10px;
|
|
915
|
+
}
|
|
916
|
+
.leaflet-bottom .leaflet-control {
|
|
917
|
+
margin-bottom: 10px;
|
|
918
|
+
}
|
|
919
|
+
.leaflet-left .leaflet-control {
|
|
920
|
+
margin-left: 10px;
|
|
921
|
+
}
|
|
922
|
+
.leaflet-right .leaflet-control {
|
|
923
|
+
margin-right: 10px;
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
/* zoom and fade animations */
|
|
928
|
+
|
|
929
|
+
.leaflet-fade-anim .leaflet-popup {
|
|
930
|
+
opacity: 0;
|
|
931
|
+
-webkit-transition: opacity 0.2s linear;
|
|
932
|
+
-moz-transition: opacity 0.2s linear;
|
|
933
|
+
transition: opacity 0.2s linear;
|
|
934
|
+
}
|
|
935
|
+
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
|
|
936
|
+
opacity: 1;
|
|
937
|
+
}
|
|
938
|
+
.leaflet-zoom-animated {
|
|
939
|
+
-webkit-transform-origin: 0 0;
|
|
940
|
+
-ms-transform-origin: 0 0;
|
|
941
|
+
transform-origin: 0 0;
|
|
942
|
+
}
|
|
943
|
+
svg.leaflet-zoom-animated {
|
|
944
|
+
will-change: transform;
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.leaflet-zoom-anim .leaflet-zoom-animated {
|
|
948
|
+
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
|
|
949
|
+
-moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
|
|
950
|
+
transition: transform 0.25s cubic-bezier(0,0,0.25,1);
|
|
951
|
+
}
|
|
952
|
+
.leaflet-zoom-anim .leaflet-tile,
|
|
953
|
+
.leaflet-pan-anim .leaflet-tile {
|
|
954
|
+
-webkit-transition: none;
|
|
955
|
+
-moz-transition: none;
|
|
956
|
+
transition: none;
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
.leaflet-zoom-anim .leaflet-zoom-hide {
|
|
960
|
+
visibility: hidden;
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
|
|
964
|
+
/* cursors */
|
|
965
|
+
|
|
966
|
+
.leaflet-interactive {
|
|
967
|
+
cursor: pointer;
|
|
968
|
+
}
|
|
969
|
+
.leaflet-grab {
|
|
970
|
+
cursor: -webkit-grab;
|
|
971
|
+
cursor: -moz-grab;
|
|
972
|
+
cursor: grab;
|
|
973
|
+
}
|
|
974
|
+
.leaflet-crosshair,
|
|
975
|
+
.leaflet-crosshair .leaflet-interactive {
|
|
976
|
+
cursor: crosshair;
|
|
977
|
+
}
|
|
978
|
+
.leaflet-popup-pane,
|
|
979
|
+
.leaflet-control {
|
|
980
|
+
cursor: auto;
|
|
981
|
+
}
|
|
982
|
+
.leaflet-dragging .leaflet-grab,
|
|
983
|
+
.leaflet-dragging .leaflet-grab .leaflet-interactive,
|
|
984
|
+
.leaflet-dragging .leaflet-marker-draggable {
|
|
985
|
+
cursor: move;
|
|
986
|
+
cursor: -webkit-grabbing;
|
|
987
|
+
cursor: -moz-grabbing;
|
|
988
|
+
cursor: grabbing;
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
/* marker & overlays interactivity */
|
|
992
|
+
.leaflet-marker-icon,
|
|
993
|
+
.leaflet-marker-shadow,
|
|
994
|
+
.leaflet-image-layer,
|
|
995
|
+
.leaflet-pane > svg path,
|
|
996
|
+
.leaflet-tile-container {
|
|
997
|
+
pointer-events: none;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.leaflet-marker-icon.leaflet-interactive,
|
|
1001
|
+
.leaflet-image-layer.leaflet-interactive,
|
|
1002
|
+
.leaflet-pane > svg path.leaflet-interactive,
|
|
1003
|
+
svg.leaflet-image-layer.leaflet-interactive path {
|
|
1004
|
+
pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
|
|
1005
|
+
pointer-events: auto;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
/* visual tweaks */
|
|
1009
|
+
|
|
1010
|
+
.leaflet-container {
|
|
1011
|
+
background: #ddd;
|
|
1012
|
+
outline-offset: 1px;
|
|
1013
|
+
}
|
|
1014
|
+
.leaflet-container a {
|
|
1015
|
+
color: #0078A8;
|
|
1016
|
+
}
|
|
1017
|
+
.leaflet-zoom-box {
|
|
1018
|
+
border: 2px dotted #38f;
|
|
1019
|
+
background: rgba(255,255,255,0.5);
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
|
|
1023
|
+
/* general typography */
|
|
1024
|
+
.leaflet-container {
|
|
1025
|
+
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
1026
|
+
font-size: 12px;
|
|
1027
|
+
font-size: 0.75rem;
|
|
1028
|
+
line-height: 1.5;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
|
|
1032
|
+
/* general toolbar styles */
|
|
1033
|
+
|
|
1034
|
+
.leaflet-bar {
|
|
1035
|
+
box-shadow: 0 1px 5px rgba(0,0,0,0.65);
|
|
1036
|
+
border-radius: 4px;
|
|
1037
|
+
}
|
|
1038
|
+
.leaflet-bar a {
|
|
1039
|
+
background-color: #fff;
|
|
1040
|
+
border-bottom: 1px solid #ccc;
|
|
1041
|
+
width: 26px;
|
|
1042
|
+
height: 26px;
|
|
1043
|
+
line-height: 26px;
|
|
1044
|
+
display: block;
|
|
1045
|
+
text-align: center;
|
|
1046
|
+
text-decoration: none;
|
|
1047
|
+
color: black;
|
|
1048
|
+
}
|
|
1049
|
+
.leaflet-bar a,
|
|
1050
|
+
.leaflet-control-layers-toggle {
|
|
1051
|
+
background-position: 50% 50%;
|
|
1052
|
+
background-repeat: no-repeat;
|
|
1053
|
+
display: block;
|
|
1054
|
+
}
|
|
1055
|
+
.leaflet-bar a:hover,
|
|
1056
|
+
.leaflet-bar a:focus {
|
|
1057
|
+
background-color: #f4f4f4;
|
|
1058
|
+
}
|
|
1059
|
+
.leaflet-bar a:first-child {
|
|
1060
|
+
border-top-left-radius: 4px;
|
|
1061
|
+
border-top-right-radius: 4px;
|
|
1062
|
+
}
|
|
1063
|
+
.leaflet-bar a:last-child {
|
|
1064
|
+
border-bottom-left-radius: 4px;
|
|
1065
|
+
border-bottom-right-radius: 4px;
|
|
1066
|
+
border-bottom: none;
|
|
1067
|
+
}
|
|
1068
|
+
.leaflet-bar a.leaflet-disabled {
|
|
1069
|
+
cursor: default;
|
|
1070
|
+
background-color: #f4f4f4;
|
|
1071
|
+
color: #bbb;
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
.leaflet-touch .leaflet-bar a {
|
|
1075
|
+
width: 30px;
|
|
1076
|
+
height: 30px;
|
|
1077
|
+
line-height: 30px;
|
|
1078
|
+
}
|
|
1079
|
+
.leaflet-touch .leaflet-bar a:first-child {
|
|
1080
|
+
border-top-left-radius: 2px;
|
|
1081
|
+
border-top-right-radius: 2px;
|
|
1082
|
+
}
|
|
1083
|
+
.leaflet-touch .leaflet-bar a:last-child {
|
|
1084
|
+
border-bottom-left-radius: 2px;
|
|
1085
|
+
border-bottom-right-radius: 2px;
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
/* zoom control */
|
|
1089
|
+
|
|
1090
|
+
.leaflet-control-zoom-in,
|
|
1091
|
+
.leaflet-control-zoom-out {
|
|
1092
|
+
font: bold 18px 'Lucida Console', Monaco, monospace;
|
|
1093
|
+
text-indent: 1px;
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
|
|
1097
|
+
font-size: 22px;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
|
|
1101
|
+
/* layers control */
|
|
1102
|
+
|
|
1103
|
+
.leaflet-control-layers {
|
|
1104
|
+
box-shadow: 0 1px 5px rgba(0,0,0,0.4);
|
|
1105
|
+
background: #fff;
|
|
1106
|
+
border-radius: 5px;
|
|
1107
|
+
}
|
|
1108
|
+
.leaflet-control-layers-toggle {
|
|
1109
|
+
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);
|
|
1110
|
+
width: 36px;
|
|
1111
|
+
height: 36px;
|
|
1112
|
+
}
|
|
1113
|
+
.leaflet-retina .leaflet-control-layers-toggle {
|
|
1114
|
+
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=);
|
|
1115
|
+
background-size: 26px 26px;
|
|
1116
|
+
}
|
|
1117
|
+
.leaflet-touch .leaflet-control-layers-toggle {
|
|
1118
|
+
width: 44px;
|
|
1119
|
+
height: 44px;
|
|
1120
|
+
}
|
|
1121
|
+
.leaflet-control-layers .leaflet-control-layers-list,
|
|
1122
|
+
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
|
|
1123
|
+
display: none;
|
|
1124
|
+
}
|
|
1125
|
+
.leaflet-control-layers-expanded .leaflet-control-layers-list {
|
|
1126
|
+
display: block;
|
|
1127
|
+
position: relative;
|
|
1128
|
+
}
|
|
1129
|
+
.leaflet-control-layers-expanded {
|
|
1130
|
+
padding: 6px 10px 6px 6px;
|
|
1131
|
+
color: #333;
|
|
1132
|
+
background: #fff;
|
|
1133
|
+
}
|
|
1134
|
+
.leaflet-control-layers-scrollbar {
|
|
1135
|
+
overflow-y: scroll;
|
|
1136
|
+
overflow-x: hidden;
|
|
1137
|
+
padding-right: 5px;
|
|
1138
|
+
}
|
|
1139
|
+
.leaflet-control-layers-selector {
|
|
1140
|
+
margin-top: 2px;
|
|
1141
|
+
position: relative;
|
|
1142
|
+
top: 1px;
|
|
1143
|
+
}
|
|
1144
|
+
.leaflet-control-layers label {
|
|
1145
|
+
display: block;
|
|
1146
|
+
font-size: 13px;
|
|
1147
|
+
font-size: 1.08333em;
|
|
1148
|
+
}
|
|
1149
|
+
.leaflet-control-layers-separator {
|
|
1150
|
+
height: 0;
|
|
1151
|
+
border-top: 1px solid #ddd;
|
|
1152
|
+
margin: 5px -10px 5px -6px;
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
/* Default icon URLs */
|
|
1156
|
+
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
|
|
1157
|
+
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=);
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
|
|
1161
|
+
/* attribution and scale controls */
|
|
1162
|
+
|
|
1163
|
+
.leaflet-container .leaflet-control-attribution {
|
|
1164
|
+
background: #fff;
|
|
1165
|
+
background: rgba(255, 255, 255, 0.8);
|
|
1166
|
+
margin: 0;
|
|
1167
|
+
}
|
|
1168
|
+
.leaflet-control-attribution,
|
|
1169
|
+
.leaflet-control-scale-line {
|
|
1170
|
+
padding: 0 5px;
|
|
1171
|
+
color: #333;
|
|
1172
|
+
line-height: 1.4;
|
|
1173
|
+
}
|
|
1174
|
+
.leaflet-control-attribution a {
|
|
1175
|
+
text-decoration: none;
|
|
1176
|
+
}
|
|
1177
|
+
.leaflet-control-attribution a:hover,
|
|
1178
|
+
.leaflet-control-attribution a:focus {
|
|
1179
|
+
text-decoration: underline;
|
|
1180
|
+
}
|
|
1181
|
+
.leaflet-attribution-flag {
|
|
1182
|
+
display: inline !important;
|
|
1183
|
+
vertical-align: baseline !important;
|
|
1184
|
+
width: 1em;
|
|
1185
|
+
height: 0.6669em;
|
|
1186
|
+
}
|
|
1187
|
+
.leaflet-left .leaflet-control-scale {
|
|
1188
|
+
margin-left: 5px;
|
|
1189
|
+
}
|
|
1190
|
+
.leaflet-bottom .leaflet-control-scale {
|
|
1191
|
+
margin-bottom: 5px;
|
|
1192
|
+
}
|
|
1193
|
+
.leaflet-control-scale-line {
|
|
1194
|
+
border: 2px solid #777;
|
|
1195
|
+
border-top: none;
|
|
1196
|
+
line-height: 1.1;
|
|
1197
|
+
padding: 2px 5px 1px;
|
|
1198
|
+
white-space: nowrap;
|
|
1199
|
+
-moz-box-sizing: border-box;
|
|
1200
|
+
box-sizing: border-box;
|
|
1201
|
+
background: rgba(255, 255, 255, 0.8);
|
|
1202
|
+
text-shadow: 1px 1px #fff;
|
|
1203
|
+
}
|
|
1204
|
+
.leaflet-control-scale-line:not(:first-child) {
|
|
1205
|
+
border-top: 2px solid #777;
|
|
1206
|
+
border-bottom: none;
|
|
1207
|
+
margin-top: -2px;
|
|
1208
|
+
}
|
|
1209
|
+
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
|
|
1210
|
+
border-bottom: 2px solid #777;
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
.leaflet-touch .leaflet-control-attribution,
|
|
1214
|
+
.leaflet-touch .leaflet-control-layers,
|
|
1215
|
+
.leaflet-touch .leaflet-bar {
|
|
1216
|
+
box-shadow: none;
|
|
1217
|
+
}
|
|
1218
|
+
.leaflet-touch .leaflet-control-layers,
|
|
1219
|
+
.leaflet-touch .leaflet-bar {
|
|
1220
|
+
border: 2px solid rgba(0,0,0,0.2);
|
|
1221
|
+
background-clip: padding-box;
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
|
|
1225
|
+
/* popup */
|
|
1226
|
+
|
|
1227
|
+
.leaflet-popup {
|
|
1228
|
+
position: absolute;
|
|
1229
|
+
text-align: center;
|
|
1230
|
+
margin-bottom: 20px;
|
|
1231
|
+
}
|
|
1232
|
+
.leaflet-popup-content-wrapper {
|
|
1233
|
+
padding: 1px;
|
|
1234
|
+
text-align: left;
|
|
1235
|
+
border-radius: 12px;
|
|
1236
|
+
}
|
|
1237
|
+
.leaflet-popup-content {
|
|
1238
|
+
margin: 13px 24px 13px 20px;
|
|
1239
|
+
line-height: 1.3;
|
|
1240
|
+
font-size: 13px;
|
|
1241
|
+
font-size: 1.08333em;
|
|
1242
|
+
min-height: 1px;
|
|
1243
|
+
}
|
|
1244
|
+
.leaflet-popup-content p {
|
|
1245
|
+
margin: 17px 0;
|
|
1246
|
+
margin: 1.3em 0;
|
|
1247
|
+
}
|
|
1248
|
+
.leaflet-popup-tip-container {
|
|
1249
|
+
width: 40px;
|
|
1250
|
+
height: 20px;
|
|
1251
|
+
position: absolute;
|
|
1252
|
+
left: 50%;
|
|
1253
|
+
margin-top: -1px;
|
|
1254
|
+
margin-left: -20px;
|
|
1255
|
+
overflow: hidden;
|
|
1256
|
+
pointer-events: none;
|
|
1257
|
+
}
|
|
1258
|
+
.leaflet-popup-tip {
|
|
1259
|
+
width: 17px;
|
|
1260
|
+
height: 17px;
|
|
1261
|
+
padding: 1px;
|
|
1262
|
+
|
|
1263
|
+
margin: -10px auto 0;
|
|
1264
|
+
pointer-events: auto;
|
|
1265
|
+
|
|
1266
|
+
-webkit-transform: rotate(45deg);
|
|
1267
|
+
-moz-transform: rotate(45deg);
|
|
1268
|
+
-ms-transform: rotate(45deg);
|
|
1269
|
+
transform: rotate(45deg);
|
|
1270
|
+
}
|
|
1271
|
+
.leaflet-popup-content-wrapper,
|
|
1272
|
+
.leaflet-popup-tip {
|
|
1273
|
+
background: white;
|
|
1274
|
+
color: #333;
|
|
1275
|
+
box-shadow: 0 3px 14px rgba(0,0,0,0.4);
|
|
1276
|
+
}
|
|
1277
|
+
.leaflet-container a.leaflet-popup-close-button {
|
|
1278
|
+
position: absolute;
|
|
1279
|
+
top: 0;
|
|
1280
|
+
right: 0;
|
|
1281
|
+
border: none;
|
|
1282
|
+
text-align: center;
|
|
1283
|
+
width: 24px;
|
|
1284
|
+
height: 24px;
|
|
1285
|
+
font: 16px/24px Tahoma, Verdana, sans-serif;
|
|
1286
|
+
color: #757575;
|
|
1287
|
+
text-decoration: none;
|
|
1288
|
+
background: transparent;
|
|
1289
|
+
}
|
|
1290
|
+
.leaflet-container a.leaflet-popup-close-button:hover,
|
|
1291
|
+
.leaflet-container a.leaflet-popup-close-button:focus {
|
|
1292
|
+
color: #585858;
|
|
1293
|
+
}
|
|
1294
|
+
.leaflet-popup-scrolled {
|
|
1295
|
+
overflow: auto;
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
.leaflet-oldie .leaflet-popup-content-wrapper {
|
|
1299
|
+
-ms-zoom: 1;
|
|
1300
|
+
}
|
|
1301
|
+
.leaflet-oldie .leaflet-popup-tip {
|
|
1302
|
+
width: 24px;
|
|
1303
|
+
margin: 0 auto;
|
|
1304
|
+
|
|
1305
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
|
|
1306
|
+
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
.leaflet-oldie .leaflet-control-zoom,
|
|
1310
|
+
.leaflet-oldie .leaflet-control-layers,
|
|
1311
|
+
.leaflet-oldie .leaflet-popup-content-wrapper,
|
|
1312
|
+
.leaflet-oldie .leaflet-popup-tip {
|
|
1313
|
+
border: 1px solid #999;
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
|
|
1317
|
+
/* div icon */
|
|
1318
|
+
|
|
1319
|
+
.leaflet-div-icon {
|
|
1320
|
+
background: #fff;
|
|
1321
|
+
border: 1px solid #666;
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
|
|
1325
|
+
/* Tooltip */
|
|
1326
|
+
/* Base styles for the element that has a tooltip */
|
|
1327
|
+
.leaflet-tooltip {
|
|
1328
|
+
position: absolute;
|
|
1329
|
+
padding: 6px;
|
|
1330
|
+
background-color: #fff;
|
|
1331
|
+
border: 1px solid #fff;
|
|
1332
|
+
border-radius: 3px;
|
|
1333
|
+
color: #222;
|
|
1334
|
+
white-space: nowrap;
|
|
1335
|
+
-webkit-user-select: none;
|
|
1336
|
+
-moz-user-select: none;
|
|
1337
|
+
-ms-user-select: none;
|
|
1338
|
+
user-select: none;
|
|
1339
|
+
pointer-events: none;
|
|
1340
|
+
box-shadow: 0 1px 3px rgba(0,0,0,0.4);
|
|
1341
|
+
}
|
|
1342
|
+
.leaflet-tooltip.leaflet-interactive {
|
|
1343
|
+
cursor: pointer;
|
|
1344
|
+
pointer-events: auto;
|
|
1345
|
+
}
|
|
1346
|
+
.leaflet-tooltip-top:before,
|
|
1347
|
+
.leaflet-tooltip-bottom:before,
|
|
1348
|
+
.leaflet-tooltip-left:before,
|
|
1349
|
+
.leaflet-tooltip-right:before {
|
|
1350
|
+
position: absolute;
|
|
1351
|
+
pointer-events: none;
|
|
1352
|
+
border: 6px solid transparent;
|
|
1353
|
+
background: transparent;
|
|
1354
|
+
content: "";
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
/* Directions */
|
|
1358
|
+
|
|
1359
|
+
.leaflet-tooltip-bottom {
|
|
1360
|
+
margin-top: 6px;
|
|
1361
|
+
}
|
|
1362
|
+
.leaflet-tooltip-top {
|
|
1363
|
+
margin-top: -6px;
|
|
1364
|
+
}
|
|
1365
|
+
.leaflet-tooltip-bottom:before,
|
|
1366
|
+
.leaflet-tooltip-top:before {
|
|
1367
|
+
left: 50%;
|
|
1368
|
+
margin-left: -6px;
|
|
1369
|
+
}
|
|
1370
|
+
.leaflet-tooltip-top:before {
|
|
1371
|
+
bottom: 0;
|
|
1372
|
+
margin-bottom: -12px;
|
|
1373
|
+
border-top-color: #fff;
|
|
1374
|
+
}
|
|
1375
|
+
.leaflet-tooltip-bottom:before {
|
|
1376
|
+
top: 0;
|
|
1377
|
+
margin-top: -12px;
|
|
1378
|
+
margin-left: -6px;
|
|
1379
|
+
border-bottom-color: #fff;
|
|
1380
|
+
}
|
|
1381
|
+
.leaflet-tooltip-left {
|
|
1382
|
+
margin-left: -6px;
|
|
1383
|
+
}
|
|
1384
|
+
.leaflet-tooltip-right {
|
|
1385
|
+
margin-left: 6px;
|
|
1386
|
+
}
|
|
1387
|
+
.leaflet-tooltip-left:before,
|
|
1388
|
+
.leaflet-tooltip-right:before {
|
|
1389
|
+
top: 50%;
|
|
1390
|
+
margin-top: -6px;
|
|
1391
|
+
}
|
|
1392
|
+
.leaflet-tooltip-left:before {
|
|
1393
|
+
right: 0;
|
|
1394
|
+
margin-right: -12px;
|
|
1395
|
+
border-left-color: #fff;
|
|
1396
|
+
}
|
|
1397
|
+
.leaflet-tooltip-right:before {
|
|
1398
|
+
left: 0;
|
|
1399
|
+
margin-left: -12px;
|
|
1400
|
+
border-right-color: #fff;
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
/* Printing */
|
|
1404
|
+
|
|
1405
|
+
@media print {
|
|
1406
|
+
/* Prevent printers from removing background-images of controls. */
|
|
1407
|
+
.leaflet-control {
|
|
1408
|
+
-webkit-print-color-adjust: exact;
|
|
1409
|
+
print-color-adjust: exact;
|
|
1410
|
+
}
|
|
1411
|
+
}
|
|
1412
1412
|
|
|
1413
1413
|
.marker-icon,.marker-icon:focus{background-color:#fff;border:1px solid #3388ff;border-radius:50%;margin:-8px 0 0 -8px!important;width:14px!important;height:14px!important;outline:0;transition:opacity ease .3s}.marker-icon-middle,.marker-icon-middle:focus{opacity:.7;margin:-6px 0 0 -6px!important;width:10px!important;height:10px!important}.leaflet-pm-draggable{cursor:move!important}.cursor-marker{cursor:crosshair;pointer-events:none;opacity:0}.cursor-marker.visible{opacity:1!important}.geoman-draw-cursor{cursor:crosshair}.rect-style-marker,.rect-start-marker{opacity:0}.rect-style-marker.visible,.rect-start-marker.visible{opacity:1!important}.vertexmarker-disabled{opacity:.7}.pm-text-marker{width:0;height:0}.pm-textarea{background-color:#fff;color:#000;resize:none;border:none;outline:0;cursor:pointer;border-radius:3px;padding-left:7px;padding-bottom:0;padding-top:4px}.leaflet-pm-draggable .pm-textarea{cursor:move}.pm-textarea:focus,.pm-textarea:focus-within,.pm-textarea:focus-visible,.pm-textarea:active{border:2px solid #000;outline:0}.pm-textarea.pm-disabled{border:none;user-select:none}.pm-textarea.pm-hasfocus{cursor:auto}.leaflet-pm-toolbar .leaflet-buttons-control-button{padding:5px;box-sizing:border-box;position:relative;z-index:3}.leaflet-pm-toolbar .leaflet-pm-actions-container a.leaflet-pm-action:first-child:not(.pos-right),.leaflet-pm-toolbar .leaflet-pm-actions-container a.leaflet-pm-action:last-child.pos-right{border-radius:0}.leaflet-pm-toolbar .button-container a.leaflet-buttons-control-button{border-radius:0}.leaflet-pm-toolbar .button-container:last-child a.leaflet-buttons-control-button{border-radius:0 0 2px 2px}.leaflet-pm-toolbar .button-container:first-child a.leaflet-buttons-control-button{border-radius:2px 2px 0 0}.leaflet-pm-toolbar .button-container:last-child a.leaflet-buttons-control-button{border-bottom:none}.leaflet-pm-toolbar .control-fa-icon{font-size:19px;line-height:24px}.leaflet-pm-toolbar .control-icon{width:100%;height:100%;box-sizing:border-box;background-size:contain;background-repeat:no-repeat;background-position:center center}.leaflet-pm-toolbar .leaflet-pm-icon-marker{background-image:url('data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?>%0A<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">%0A <!-- Generator: Sketch 52.5 (67469) - http://www.bohemiancoding.com/sketch -->%0A <title>Atoms/Icons/Tools/Marker</title>%0A <desc>Created with Sketch.</desc>%0A <defs>%0A <path d="M15.5,24.8782959 C15.2909201,24.8772219 15.1744857,24.8467817 14.6590866,24.2354163 C10.2196955,19.4118054 8,15.5014392 8,12.5043177 C8,8.35979746 11.3578644,5 15.5,5 C19.6421356,5 23,8.35979746 23,12.5043177 C23,17 18.2878217,21.9268378 16.3336601,24.2440186 C15.8224622,24.8501802 15.7090799,24.8793699 15.5,24.8782959 Z M15.5,15.5326948 C17.275201,15.5326948 18.7142857,14.1180004 18.7142857,12.3728864 C18.7142857,10.6277723 17.275201,9.21307792 15.5,9.21307792 C13.724799,9.21307792 12.2857143,10.6277723 12.2857143,12.3728864 C12.2857143,14.1180004 13.724799,15.5326948 15.5,15.5326948 Z" id="path-1"></path>%0A </defs>%0A <g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">%0A <g id="Atoms/Icons/Tools/Marker" transform="translate(-3.000000, -3.000000)">%0A <mask id="mask-2" fill="white">%0A <use xlink:href="%23path-1"></use>%0A </mask>%0A <use id="Mask" fill="%235B5B5B" fill-rule="nonzero" xlink:href="%23path-1"></use>%0A </g>%0A </g>%0A</svg>')}.leaflet-pm-toolbar .leaflet-pm-icon-polygon{background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 24 24">%0A <defs>%0A <path id="polygon-a" d="M19.4206892,9.16509725 C19.1523681,8.66992914 19,8.10275831 19,7.5 C19,5.56700338 20.5670034,4 22.5,4 C24.4329966,4 26,5.56700338 26,7.5 C26,9.26323595 24.6961471,10.7219407 23,10.9645556 L23,19.0354444 C24.6961471,19.2780593 26,20.736764 26,22.5 C26,24.4329966 24.4329966,26 22.5,26 C20.736764,26 19.2780593,24.6961471 19.0354444,23 L10.9645556,23 C10.7219407,24.6961471 9.26323595,26 7.5,26 C5.56700338,26 4,24.4329966 4,22.5 C4,20.5670034 5.56700338,19 7.5,19 C8.10275831,19 8.66992914,19.1523681 9.16509725,19.4206892 L19.4206892,9.16509725 Z M20.8349073,10.5793063 L10.5793108,20.8349027 C10.6086731,20.8890888 10.6366469,20.9441372 10.6631844,21 L19.3368156,21 C19.6825775,20.272154 20.272154,19.6825775 21,19.3368156 L21,10.6631844 C20.9441372,10.6366469 20.8890888,10.6086731 20.8349027,10.5793108 Z M22.5,9 C23.3284271,9 24,8.32842712 24,7.5 C24,6.67157288 23.3284271,6 22.5,6 C21.6715729,6 21,6.67157288 21,7.5 C21,8.32842712 21.6715729,9 22.5,9 Z M22.5,24 C23.3284271,24 24,23.3284271 24,22.5 C24,21.6715729 23.3284271,21 22.5,21 C21.6715729,21 21,21.6715729 21,22.5 C21,23.3284271 21.6715729,24 22.5,24 Z M7.5,24 C8.32842712,24 9,23.3284271 9,22.5 C9,21.6715729 8.32842712,21 7.5,21 C6.67157288,21 6,21.6715729 6,22.5 C6,23.3284271 6.67157288,24 7.5,24 Z"/>%0A </defs>%0A <g fill="none" fill-rule="evenodd" transform="translate(-3 -3)">%0A <mask id="polygon-b" fill="%23fff">%0A <use xlink:href="%23polygon-a"/>%0A </mask>%0A <use fill="%235B5B5B" fill-rule="nonzero" xlink:href="%23polygon-a"/>%0A <g fill="%235B5B5B" mask="url(%23polygon-b)">%0A <rect width="30" height="30"/>%0A </g>%0A </g>%0A</svg>%0A')}.leaflet-pm-toolbar .leaflet-pm-icon-polyline{background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 24 24">%0A <defs>%0A <path id="line-a" d="M9.16509725,19.4206892 L18.4206892,10.1650973 C18.1523681,9.66992914 18,9.10275831 18,8.5 C18,6.56700338 19.5670034,5 21.5,5 C23.4329966,5 25,6.56700338 25,8.5 C25,10.4329966 23.4329966,12 21.5,12 C20.8972417,12 20.3300709,11.8476319 19.8349027,11.5793108 L10.5793108,20.8349027 C10.8476319,21.3300709 11,21.8972417 11,22.5 C11,24.4329966 9.43299662,26 7.5,26 C5.56700338,26 4,24.4329966 4,22.5 C4,20.5670034 5.56700338,19 7.5,19 C8.10275831,19 8.66992914,19.1523681 9.16509725,19.4206892 Z M21.5,10 C22.3284271,10 23,9.32842712 23,8.5 C23,7.67157288 22.3284271,7 21.5,7 C20.6715729,7 20,7.67157288 20,8.5 C20,9.32842712 20.6715729,10 21.5,10 Z M7.5,24 C8.32842712,24 9,23.3284271 9,22.5 C9,21.6715729 8.32842712,21 7.5,21 C6.67157288,21 6,21.6715729 6,22.5 C6,23.3284271 6.67157288,24 7.5,24 Z"/>%0A </defs>%0A <g fill="none" fill-rule="evenodd" transform="translate(-3 -3)">%0A <mask id="line-b" fill="%23fff">%0A <use xlink:href="%23line-a"/>%0A </mask>%0A <use fill="%235B5B5B" fill-rule="nonzero" xlink:href="%23line-a"/>%0A <g fill="%235B5B5B" mask="url(%23line-b)">%0A <rect width="30" height="30"/>%0A </g>%0A </g>%0A</svg>%0A')}.leaflet-pm-toolbar .leaflet-pm-icon-circle{background-image:url('data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?>%0A<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">%0A <!-- Generator: Sketch 52.5 (67469) - http://www.bohemiancoding.com/sketch -->%0A <title>Atoms/Icons/Tools/Circle</title>%0A <desc>Created with Sketch.</desc>%0A <defs>%0A <path d="M18.2897751,6.78602275 C18.8924131,6.29464981 19.661797,6 20.5,6 C22.4329966,6 24,7.56700338 24,9.5 C24,10.338203 23.7053502,11.1075869 23.2139772,11.7102249 C23.719599,12.8712053 24,14.1528571 24,15.5 C24,20.7467051 19.7467051,25 14.5,25 C9.25329488,25 5,20.7467051 5,15.5 C5,10.2532949 9.25329488,6 14.5,6 C15.8471429,6 17.1287947,6.28040098 18.2897751,6.78602275 Z M17.1504228,8.4817586 C16.3263581,8.17039236 15.4330777,8 14.5,8 C10.3578644,8 7,11.3578644 7,15.5 C7,19.6421356 10.3578644,23 14.5,23 C18.6421356,23 22,19.6421356 22,15.5 C22,14.5669223 21.8296076,13.6736419 21.5182414,12.8495772 C21.1960383,12.9473968 20.8541622,13 20.5,13 C18.5670034,13 17,11.4329966 17,9.5 C17,9.14583778 17.0526032,8.80396169 17.1504228,8.4817586 Z M14.5,17 C13.6715729,17 13,16.3284271 13,15.5 C13,14.6715729 13.6715729,14 14.5,14 C15.3284271,14 16,14.6715729 16,15.5 C16,16.3284271 15.3284271,17 14.5,17 Z M20.5,11 C21.3284271,11 22,10.3284271 22,9.5 C22,8.67157288 21.3284271,8 20.5,8 C19.6715729,8 19,8.67157288 19,9.5 C19,10.3284271 19.6715729,11 20.5,11 Z" id="path-1"></path>%0A </defs>%0A <g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">%0A <g id="Atoms/Icons/Tools/Circle" transform="translate(-3.000000, -3.000000)">%0A <mask id="mask-2" fill="white">%0A <use xlink:href="%23path-1"></use>%0A </mask>%0A <use id="Mask" fill="%235B5B5B" fill-rule="nonzero" xlink:href="%23path-1"></use>%0A <g id="Atoms/Color/Grey" mask="url(%23mask-2)" fill="%235B5B5B">%0A <rect id="Rectangle" x="0" y="0" width="30" height="30"></rect>%0A </g>%0A </g>%0A </g>%0A</svg>')}.leaflet-pm-toolbar .leaflet-pm-icon-circle-marker{background-image:url('data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?>%0A%0A<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" stroke="%235B5B5B" stroke-width="8"%0A fill="none">%0A<circle cx="50" cy="50" r="35"/>%0A <circle cx="50" cy="50" r="3" fill="%235B5B5B"/>%0A</svg>')}.leaflet-pm-toolbar .leaflet-pm-icon-rectangle{background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 24 24">%0A <defs>%0A <path id="rectangle-a" d="M23,10.9645556 L23,19.0354444 C24.6961471,19.2780593 26,20.736764 26,22.5 C26,24.4329966 24.4329966,26 22.5,26 C20.736764,26 19.2780593,24.6961471 19.0354444,23 L10.9645556,23 C10.7219407,24.6961471 9.26323595,26 7.5,26 C5.56700338,26 4,24.4329966 4,22.5 C4,20.736764 5.30385293,19.2780593 7,19.0354444 L7,10.9645556 C5.30385293,10.7219407 4,9.26323595 4,7.5 C4,5.56700338 5.56700338,4 7.5,4 C9.26323595,4 10.7219407,5.30385293 10.9645556,7 L19.0354444,7 C19.2780593,5.30385293 20.736764,4 22.5,4 C24.4329966,4 26,5.56700338 26,7.5 C26,9.26323595 24.6961471,10.7219407 23,10.9645556 Z M21,10.6631844 C20.272154,10.3174225 19.6825775,9.72784598 19.3368156,9 L10.6631844,9 C10.3174225,9.72784598 9.72784598,10.3174225 9,10.6631844 L9,19.3368156 C9.72784598,19.6825775 10.3174225,20.272154 10.6631844,21 L19.3368156,21 C19.6825775,20.272154 20.272154,19.6825775 21,19.3368156 L21,10.6631844 Z M7.5,9 C8.32842712,9 9,8.32842712 9,7.5 C9,6.67157288 8.32842712,6 7.5,6 C6.67157288,6 6,6.67157288 6,7.5 C6,8.32842712 6.67157288,9 7.5,9 Z M22.5,9 C23.3284271,9 24,8.32842712 24,7.5 C24,6.67157288 23.3284271,6 22.5,6 C21.6715729,6 21,6.67157288 21,7.5 C21,8.32842712 21.6715729,9 22.5,9 Z M22.5,24 C23.3284271,24 24,23.3284271 24,22.5 C24,21.6715729 23.3284271,21 22.5,21 C21.6715729,21 21,21.6715729 21,22.5 C21,23.3284271 21.6715729,24 22.5,24 Z M7.5,24 C8.32842712,24 9,23.3284271 9,22.5 C9,21.6715729 8.32842712,21 7.5,21 C6.67157288,21 6,21.6715729 6,22.5 C6,23.3284271 6.67157288,24 7.5,24 Z"/>%0A </defs>%0A <g fill="none" fill-rule="evenodd" transform="translate(-3 -3)">%0A <mask id="rectangle-b" fill="%23fff">%0A <use xlink:href="%23rectangle-a"/>%0A </mask>%0A <use fill="%235B5B5B" fill-rule="nonzero" xlink:href="%23rectangle-a"/>%0A <g fill="%235B5B5B" mask="url(%23rectangle-b)">%0A <rect width="30" height="30"/>%0A </g>%0A </g>%0A</svg>%0A')}.leaflet-pm-toolbar .leaflet-pm-icon-delete{background-image:url('data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?>%0A<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">%0A <!-- Generator: Sketch 52.5 (67469) - http://www.bohemiancoding.com/sketch -->%0A <title>Atoms/Icons/Tools/Eraser</title>%0A <desc>Created with Sketch.</desc>%0A <defs>%0A <path d="M17.7874219,18.4812552 L11.6480079,13.3498184 L6.40466009,19.3816001 L10.5539156,22.9884929 L13.86934,22.9884929 L17.7874219,18.4812552 Z M16.5074252,22.9884929 L26.0000002,22.9884929 L26.0000002,24.9884929 L10.0000002,24.9884929 L9.80708313,24.9884929 L5.09254204,20.8910192 C4.25891285,20.1663564 4.17057814,18.9031112 4.89524093,18.069482 L16.0482444,5.23941916 C16.7729072,4.40578998 18.0361525,4.31745526 18.8697816,5.04211806 L24.9074583,10.2905903 C25.7410875,11.0152531 25.8294222,12.2784983 25.1047594,13.1121275 L16.5074252,22.9884929 Z" id="path-1"></path>%0A </defs>%0A <g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">%0A <g id="Atoms/Icons/Tools/Eraser" transform="translate(-3.000000, -3.000000)">%0A <mask id="mask-2" fill="white">%0A <use xlink:href="%23path-1"></use>%0A </mask>%0A <use id="Combined-Shape" fill="%235B5B5B" fill-rule="nonzero" xlink:href="%23path-1"></use>%0A </g>%0A </g>%0A</svg>')}.leaflet-pm-toolbar .leaflet-pm-icon-edit{background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 24 24">%0A <defs>%0A <path id="edit_anchor-a" d="M13.5,11 C11.5670034,11 10,9.43299662 10,7.5 C10,5.56700338 11.5670034,4 13.5,4 C15.4329966,4 17,5.56700338 17,7.5 C17,9.43299662 15.4329966,11 13.5,11 Z M13.5,9 C14.3284271,9 15,8.32842712 15,7.5 C15,6.67157288 14.3284271,6 13.5,6 C12.6715729,6 12,6.67157288 12,7.5 C12,8.32842712 12.6715729,9 13.5,9 Z M12.0002889,7.52973893 C12.0125983,8.16273672 12.4170197,8.6996643 12.9807111,8.90767966 L3,15 L3,13 L12.0002889,7.52973893 Z M14.2172722,6.18228472 L19.453125,3 L22.6589355,3 L14.989102,7.68173885 C14.9962971,7.62216459 15,7.56151472 15,7.5 C15,6.93138381 14.6836098,6.4366645 14.2172722,6.18228472 Z M23.4434042,19.2851736 L20.1282799,19.2851736 L21.8729983,23.5349525 C21.9945296,23.8295773 21.8556546,24.1599209 21.5778734,24.2849208 L20.0414675,24.9545142 C19.7550613,25.0795141 19.4338738,24.9366704 19.3123426,24.6509518 L17.6544367,20.6154541 L14.9461873,23.4010151 C14.5852811,23.7721711 14,23.4860463 14,22.9992653 L14,9.57183533 C14,9.05933561 14.6225311,8.809492 14.946156,9.17008555 L23.8340292,18.3120179 C24.1925291,18.6613615 23.9279979,19.2851736 23.4434042,19.2851736 Z"/>%0A </defs>%0A <g fill="none" fill-rule="evenodd" transform="translate(-3 -3)">%0A <mask id="edit_anchor-b" fill="%23fff">%0A <use xlink:href="%23edit_anchor-a"/>%0A </mask>%0A <use fill="%235B5B5B" fill-rule="nonzero" xlink:href="%23edit_anchor-a"/>%0A <g fill="%235B5B5B" mask="url(%23edit_anchor-b)">%0A <rect width="30" height="30"/>%0A </g>%0A </g>%0A</svg>%0A')}.leaflet-pm-toolbar .leaflet-pm-icon-drag{background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 24 24">%0A <defs>%0A <path id="move-a" d="M21,14 L21,10 L27,15 L21,20 L21,16 L16,16 L16,21 L20,21 L15,27 L10,21 L14,21 L14,16 L9,16 L9,20 L3,15 L9,10 L9,14 L14,14 L14,9 L10,9 L15,3 L20,9 L16,9 L16,14 L21,14 Z"/>%0A </defs>%0A <g fill="none" fill-rule="evenodd" transform="translate(-3 -3)">%0A <mask id="move-b" fill="%23fff">%0A <use xlink:href="%23move-a"/>%0A </mask>%0A <use fill="%23D8D8D8" xlink:href="%23move-a"/>%0A <g fill="%235B5B5B" mask="url(%23move-b)">%0A <rect width="30" height="30"/>%0A </g>%0A </g>%0A</svg>%0A')}.leaflet-pm-toolbar .leaflet-pm-icon-cut{background-image:url('data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?>%0A<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">%0A <!-- Generator: Sketch 52.5 (67469) - http://www.bohemiancoding.com/sketch -->%0A <title>Atoms/Icons/Tools/Scissors</title>%0A <desc>Created with Sketch.</desc>%0A <defs>%0A <path d="M12.9691574,13.4939435 L21.0317032,5.54167013 L23.4649499,5.67722957 L17.0470713,14.5106816 L27.5660336,17.1333535 L25.7891944,18.8012588 L14.5854951,17.8987506 L13.6487955,19.188007 C13.794639,19.2650958 13.9367985,19.3534417 14.0741377,19.4532245 C15.6379648,20.5894114 15.9846357,22.7782052 14.8484488,24.3420324 C13.7122619,25.9058595 11.5234681,26.2525304 9.95964096,25.1163435 C8.39581384,23.9801565 8.04914296,21.7913627 9.18532986,20.2275356 C9.74587276,19.4560145 10.5626188,18.9807475 11.4341218,18.8336407 L12.6805656,17.1180579 L12.5239724,16.3747216 L11.9506932,15.3012391 L9.89310646,14.7882251 C9.13093796,15.2357261 8.19977854,15.3966447 7.27445355,15.1659352 C5.39887519,14.698301 4.25751094,12.7987519 4.72514515,10.9231736 C5.19277935,9.04759519 7.09232846,7.90623094 8.96790682,8.37386515 C10.8434852,8.84149935 11.9848494,10.7410485 11.5172152,12.6166268 C11.4761464,12.7813449 11.4240335,12.9404001 11.3618627,13.0931999 L12.9691574,13.4939435 Z M7.75829735,13.2253438 C8.56211664,13.4257584 9.37620912,12.9366023 9.57662378,12.132783 C9.77703844,11.3289637 9.28788233,10.5148713 8.48406303,10.3144566 C7.68024373,10.1140419 6.86615126,10.603198 6.6657366,11.4070173 C6.46532194,12.2108366 6.95447805,13.0249291 7.75829735,13.2253438 Z M10.8033639,21.4031061 C10.3164266,22.0733177 10.4649998,23.0113722 11.1352115,23.4983095 C11.8054231,23.9852467 12.7434776,23.8366735 13.2304148,23.1664619 C13.7173521,22.4962502 13.5687788,21.5581957 12.8985672,21.0712585 C12.2283556,20.5843212 11.2903011,20.7328945 10.8033639,21.4031061 Z" id="path-1"></path>%0A </defs>%0A <g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">%0A <g id="Atoms/Icons/Tools/Scissors" transform="translate(-3.000000, -3.000000)">%0A <mask id="mask-2" fill="white">%0A <use xlink:href="%23path-1"></use>%0A </mask>%0A <use id="Mask" fill="%235B5B5B" fill-rule="nonzero" transform="translate(16.093194, 15.663351) rotate(-32.000000) translate(-16.093194, -15.663351) " xlink:href="%23path-1"></use>%0A </g>%0A </g>%0A</svg>')}.leaflet-pm-toolbar .leaflet-pm-icon-snapping{background-image:url('data:image/svg+xml,<?xml version="1.0" encoding="UTF-8"?>%0A<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">%0A <!-- Generator: Sketch 57.1 (83088) - https://sketch.com -->%0A <title>Atoms/Icons/Tools/Magnet</title>%0A <desc>Created with Sketch.</desc>%0A <defs>%0A <path d="M21.9994759,10.9428183 L21.9999985,16.3710417 C22,16.6872007 22,17.0058278 22,17.3269411 C22,21.5646545 18.6421356,25 14.5,25 C10.3578644,25 7,21.5646545 7,17.3269411 L7.00087508,10.9907507 L11.0022808,10.9984125 C11.0017033,11.6980114 11.001247,12.4168248 11.0008992,13.1554887 L11,17.3269411 C11,19.3756809 12.5876841,21 14.5,21 C16.4123159,21 18,19.3756809 18,17.3269411 C18,15.0702032 17.9995696,12.9619668 17.998539,10.9910032 L21.9994759,10.9428183 Z M10,7 C10.5522847,7 11,7.44771525 11,8 L11,10 L7,10 L7,8 C7,7.44771525 7.44771525,7 8,7 L10,7 Z M21,7 C21.5522847,7 22,7.44771525 22,8 L22,10 L18,10 L18,8 C18,7.44771525 18.4477153,7 19,7 L21,7 Z" id="path-1"></path>%0A </defs>%0A <g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">%0A <g id="Atoms/Icons/Tools/Magnet" transform="translate(-3.000000, -3.000000)">%0A <mask id="mask-2" fill="white">%0A <use xlink:href="%23path-1"></use>%0A </mask>%0A <use id="Mask" fill="%235B5B5B" fill-rule="nonzero" transform="translate(14.500000, 16.000000) rotate(45.000000) translate(-14.500000, -16.000000) " xlink:href="%23path-1"></use>%0A </g>%0A </g>%0A</svg>')}.leaflet-pm-toolbar .leaflet-pm-icon-rotate{background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 24 24">%0A <defs>%0A <path id="rotate" d="M21.2,5.8c-0.1-0.2-0.2-0.3-0.3-0.5l-0.1-0.2c-0.1-0.2-0.2-0.3-0.3-0.5l-0.1-0.2c-0.1-0.2-0.2-0.3-0.4-0.5l-0.2-0.3l2.8-3.1L18,0.6l-4.6,0.1l0.5,4.5l0.5,4.5l3.2-3.6v0.1l0.1,0.2c0.1,0.1,0.1,0.2,0.2,0.2l0.1,0.2C18,7,18,7.1,18.1,7.2c0.3,0.7,0.6,1.4,0.7,2.1c0.2,1.4,0,2.9-0.6,4.2L18,13.9L17.9,14l-0.3,0.5l-0.1,0.2c-0.2,0.2-0.4,0.5-0.6,0.7c-0.5,0.5-1.1,1-1.7,1.3c-0.6,0.4-1.3,0.6-2.1,0.8c-0.7,0.1-1.5,0.2-2.2,0.1c-0.8-0.1-1.5-0.3-2.2-0.5c-0.7-0.3-1.3-0.7-1.9-1.2l-0.4-0.4l-0.2-0.3L6,15c-0.1-0.1-0.2-0.2-0.2-0.3l-0.3-0.4l-0.1-0.1l-0.2-0.4c0-0.1-0.1-0.1-0.1-0.2l-0.3-0.5l-0.1-0.2c-0.1-0.3-0.2-0.6-0.3-0.9c-0.2-0.8-0.3-1.6-0.3-2.4c0-0.2,0-0.3,0-0.5V8.9c0-0.2,0-0.3,0.1-0.4l0.1-0.6l0.2-0.6c0.3-0.8,0.7-1.5,1.2-2.2c0.5-0.7,1.1-1.3,1.8-1.8c0.2-0.1,0.3-0.4,0.1-0.6C7.5,2.6,7.4,2.5,7.3,2.5H7.1L7,2.6C6.1,3,5.4,3.6,4.7,4.2C4,4.9,3.5,5.7,3,6.6c-0.9,1.8-1.2,3.8-0.8,5.8c0.1,0.5,0.2,0.9,0.3,1.4l0.3,0.8C2.9,14.7,3,14.8,3,15l0.2,0.4c0,0.1,0.1,0.2,0.1,0.2l0.3,0.5c0.1,0.2,0.2,0.3,0.3,0.5l0.1,0.2c0.1,0.1,0.2,0.3,0.3,0.4L5,17.8c0.7,0.7,1.6,1.3,2.5,1.8c0.9,0.5,1.9,0.8,3,0.9c0.5,0.1,1,0.1,1.5,0.1c0.6,0,1.1,0,1.6-0.1c1-0.2,2.1-0.5,3-1l0.2-0.1c0.2-0.1,0.3-0.2,0.5-0.3l0.7-0.4c0.2-0.1,0.3-0.2,0.4-0.3l0.2-0.2c0.2-0.1,0.4-0.3,0.5-0.5l0.1-0.1c0.3-0.3,0.7-0.7,0.9-1l0.6-0.9l0.4-0.6c1-1.9,1.4-4.1,1.1-6.2C22,7.8,21.7,6.7,21.2,5.8z"/>%0A </defs>%0A <g fill="none" fill-rule="evenodd" transform="translate(0 2)">%0A <mask id="rotate-b" fill="%23fff">%0A <use xlink:href="%23rotate"/>%0A </mask>%0A <use fill="%235B5B5B" fill-rule="nonzero" xlink:href="%23rotate"/>%0A <g fill="%235B5B5B" mask="url(%23rotate-b)">%0A <rect width="30" height="30"/>%0A </g>%0A </g>%0A</svg>%0A')}.leaflet-pm-toolbar .leaflet-pm-icon-text{background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:none;stroke:%235b5b5b;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.5px;}<\/style></defs><title>Text</title><g id="Ebene_2" data-name="Ebene 2"><polyline class="cls-1" points="19.64 7.27 19.64 4 12 4 12 20 15.91 20 8.09 20 12 20 12 4 4.36 4 4.36 7.27"/></g></svg>')}.leaflet-buttons-control-button:hover,.leaflet-buttons-control-button:focus{cursor:pointer;background-color:#f4f4f4}.active>.leaflet-buttons-control-button{box-shadow:inset 0 -1px 5px 2px #514d4d4f}.leaflet-buttons-control-text-hide{display:none}.button-container{position:relative}.button-container .leaflet-pm-actions-container{z-index:2;position:absolute;top:0;left:100%;display:none;white-space:nowrap;direction:ltr}.leaflet-right .leaflet-pm-toolbar .button-container .leaflet-pm-actions-container{right:100%;left:auto}.button-container.active .leaflet-pm-actions-container{display:block}.button-container .leaflet-pm-actions-container:not(.pos-right) a.leaflet-pm-action:last-child{border-radius:0 3px 3px 0;border-right:0}.button-container .leaflet-pm-actions-container.pos-right a.leaflet-pm-action:first-child{border-radius:3px 0 0 3px}.button-container .leaflet-pm-actions-container.pos-right a.leaflet-pm-action:last-child{border-right:0}.button-container .leaflet-pm-actions-container .leaflet-pm-action{padding:0 10px;background-color:#666;color:#fff;display:inline-block;width:auto;border-right:1px solid #eee;user-select:none;border-bottom:none;height:29px;line-height:29px}.leaflet-pm-toolbar .button-container:first-child.pos-right.active a.leaflet-buttons-control-button{border-top-left-radius:0}.leaflet-pm-toolbar .button-container:first-child.active:not(.pos-right) a.leaflet-buttons-control-button{border-top-right-radius:0}.button-container .leaflet-pm-actions-container .leaflet-pm-action:hover,.button-container .leaflet-pm-actions-container .leaflet-pm-action:focus{cursor:pointer;background-color:#777}.leaflet-pm-toolbar.activeChild{z-index:801}.leaflet-buttons-control-button.pm-disabled{background-color:#f4f4f4}.leaflet-buttons-control-button.pm-disabled>.control-icon{filter:opacity(.6)}
|
|
1414
1414
|
|