andoncloud-map-widget 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +1 -147
- package/dist/index.css.map +1 -1
- package/dist/index.js +4 -22875
- package/dist/index.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +7 -5
package/dist/index.css
CHANGED
|
@@ -1,148 +1,2 @@
|
|
|
1
|
-
@import
|
|
2
|
-
@import '~leaflet-draw/dist/leaflet.draw.css';
|
|
3
|
-
|
|
4
|
-
@keyframes pulse {
|
|
5
|
-
0% {
|
|
6
|
-
stroke: #155ed1;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
70% {
|
|
10
|
-
stroke: transparent;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
100% {
|
|
14
|
-
stroke: #155ed1;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.leaflet-container {
|
|
19
|
-
height: 100%;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.leaflet-touch .leaflet-bar {
|
|
23
|
-
border: none;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.leaflet-bar a {
|
|
27
|
-
line-height: 27px !important;
|
|
28
|
-
color: #333333;
|
|
29
|
-
border: 0.5px solid rgba(0, 0, 0, 0.1);
|
|
30
|
-
background-color: #ccc;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.leaflet-bar a:hover {
|
|
34
|
-
color: #333333;
|
|
35
|
-
background-color: #ccc;
|
|
36
|
-
filter: opacity(0.9);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.leaflet-top {
|
|
40
|
-
display: flex;
|
|
41
|
-
width: 50%;
|
|
42
|
-
height: 50px;
|
|
43
|
-
background: #333333;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.leaflet-right {
|
|
47
|
-
display: inline-flex;
|
|
48
|
-
justify-content: flex-end;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.leaflet-control-attribution.leaflet-control {
|
|
52
|
-
display: none;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.leaflet-draw {
|
|
56
|
-
height: 100vh;
|
|
57
|
-
background: #333333;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.leaflet-draw.leaflet-control {
|
|
61
|
-
margin: 0;
|
|
62
|
-
margin-top: 50px;
|
|
63
|
-
padding: 10px;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.leaflet-control-zoom {
|
|
67
|
-
display: inline-flex;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.leaflet-control-zoom-in {
|
|
71
|
-
border-radius: 2px !important;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.leaflet-control-zoom-out {
|
|
75
|
-
margin-left: 2px;
|
|
76
|
-
border-radius: 2px !important;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.leaflet-tooltip {
|
|
80
|
-
padding: 0.5em 1em;
|
|
81
|
-
font-weight: 600;
|
|
82
|
-
color: white;
|
|
83
|
-
box-shadow: none;
|
|
84
|
-
text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
|
|
85
|
-
border: none;
|
|
86
|
-
background: transparent;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.leaflet-path-draggable {
|
|
90
|
-
stroke-dasharray: 10;
|
|
91
|
-
animation: pulse 2s infinite;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.leaflet-contextmenu {
|
|
95
|
-
display: none;
|
|
96
|
-
box-shadow: 0 1px 7px rgba(0,0,0,0.4);
|
|
97
|
-
border-radius: 4px;
|
|
98
|
-
padding: 4px 0;
|
|
99
|
-
background-color: #fff;
|
|
100
|
-
cursor: default;
|
|
101
|
-
-webkit-user-select: none;
|
|
102
|
-
-moz-user-select: none;
|
|
103
|
-
user-select: none;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.leaflet-contextmenu a.leaflet-contextmenu-item {
|
|
107
|
-
display: block;
|
|
108
|
-
color: #222;
|
|
109
|
-
font-size: 12px;
|
|
110
|
-
line-height: 20px;
|
|
111
|
-
text-decoration: none;
|
|
112
|
-
padding: 0 12px;
|
|
113
|
-
border-top: 1px solid transparent;
|
|
114
|
-
border-bottom: 1px solid transparent;
|
|
115
|
-
cursor: default;
|
|
116
|
-
outline: none;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
.leaflet-contextmenu a.leaflet-contextmenu-item-disabled {
|
|
120
|
-
opacity: 0.5;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.leaflet-contextmenu a.leaflet-contextmenu-item.over {
|
|
124
|
-
background-color: #f4f4f4;
|
|
125
|
-
border-top: 1px solid #f0f0f0;
|
|
126
|
-
border-bottom: 1px solid #f0f0f0;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
.leaflet-contextmenu a.leaflet-contextmenu-item-disabled.over {
|
|
130
|
-
background-color: inherit;
|
|
131
|
-
border-top: 1px solid transparent;
|
|
132
|
-
border-bottom: 1px solid transparent;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.leaflet-contextmenu-icon {
|
|
136
|
-
margin: 2px 8px 0 0;
|
|
137
|
-
width: 16px;
|
|
138
|
-
height: 16px;
|
|
139
|
-
float: left;
|
|
140
|
-
border: 0;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
.leaflet-contextmenu-separator {
|
|
144
|
-
border-bottom: 1px solid #ccc;
|
|
145
|
-
margin: 5px 0;
|
|
146
|
-
}
|
|
147
|
-
|
|
1
|
+
@import "~leaflet/dist/leaflet.css";@import "~leaflet-draw/dist/leaflet.draw.css";@keyframes pulse{0%{stroke:#155ed1}70%{stroke:transparent}to{stroke:#155ed1}}.leaflet-container{height:100%}.leaflet-touch .leaflet-bar{border:none}.leaflet-bar a{background-color:#ccc;border:.5px solid rgba(0,0,0,.1);color:#333;line-height:27px!important}.leaflet-bar a:hover{background-color:#ccc;color:#333;filter:opacity(.9)}.leaflet-top{background:#333;display:flex;height:50px;width:50%}.leaflet-right{display:inline-flex;justify-content:flex-end}.leaflet-control-attribution.leaflet-control{display:none}.leaflet-draw{background:#333;height:100vh}.leaflet-draw.leaflet-control{margin:50px 0 0;padding:10px}.leaflet-control-zoom{display:inline-flex}.leaflet-control-zoom-in,.leaflet-control-zoom-out{border-radius:2px!important}.leaflet-control-zoom-out{margin-left:2px}.leaflet-tooltip{background:transparent;border:none;box-shadow:none;color:#fff;font-weight:600;padding:.5em 1em;text-shadow:0 0 6px #000}.leaflet-path-draggable{stroke-dasharray:10;animation:pulse 2s infinite}.leaflet-contextmenu{background-color:#fff;border-radius:4px;box-shadow:0 1px 7px rgba(0,0,0,.4);cursor:default;display:none;padding:4px 0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.leaflet-contextmenu a.leaflet-contextmenu-item{border-bottom:1px solid transparent;border-top:1px solid transparent;color:#222;cursor:default;display:block;font-size:12px;line-height:20px;outline:none;padding:0 12px;text-decoration:none}.leaflet-contextmenu a.leaflet-contextmenu-item-disabled{opacity:.5}.leaflet-contextmenu a.leaflet-contextmenu-item.over{background-color:#f4f4f4;border-bottom:1px solid #f0f0f0;border-top:1px solid #f0f0f0}.leaflet-contextmenu a.leaflet-contextmenu-item-disabled.over{background-color:inherit;border-bottom:1px solid transparent;border-top:1px solid transparent}.leaflet-contextmenu-icon{border:0;float:left;height:16px;margin:2px 8px 0 0;width:16px}.leaflet-contextmenu-separator{border-bottom:1px solid #ccc;margin:5px 0}
|
|
148
2
|
/*# sourceMappingURL=index.css.map */
|
package/dist/index.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.css","leaflet.contextmenu.css"],"names":[],"mappings":"AAAA,mCAAmC
|
|
1
|
+
{"version":3,"sources":["index.css","leaflet.contextmenu.css"],"names":[],"mappings":"AAAA,mCAAmC,CACnC,6CAA6C,CAE7C,iBACC,GACG,cACH,CAEA,IACG,kBACH,CAEA,GACG,cACH,CACD,CAEA,mBACE,WACF,CAEA,4BACE,WACF,CAEA,eAIE,qBAAsB,CADtB,gCAAsC,CADtC,UAAc,CADd,0BAIF,CAEA,qBAEE,qBAAsB,CADtB,UAAc,CAEd,kBACF,CAEA,aAIE,eAAmB,CAHnB,YAAa,CAEb,WAAY,CADZ,SAGF,CAEA,eACE,mBAAoB,CACpB,wBACF,CAEA,6CACE,YACF,CAEA,cAEE,eAAmB,CADnB,YAEF,CAEA,8BAEE,eAAgB,CAChB,YACF,CAEA,sBACE,mBACF,CAMA,mDAHE,2BAMF,CAHA,0BACE,eAEF,CAEA,iBAOE,sBAAuB,CADvB,WAAY,CAFZ,eAAgB,CADhB,UAAY,CADZ,eAAgB,CADhB,gBAAkB,CAIlB,wBAGF,CAEA,wBACE,mBAAoB,CACpB,2BACF,CC3FA,qBAMI,qBAAsB,CAFtB,iBAAkB,CAFlB,mCAAqC,CAKrC,cAAe,CANf,YAAa,CAIb,aAAc,CAGd,wBAAyB,CACzB,qBAAsB,CACtB,gBACJ,CAEA,gDAQI,mCAAoC,CADpC,gCAAiC,CALjC,UAAW,CAOX,cAAe,CARf,aAAc,CAEd,cAAe,CACf,gBAAiB,CAMjB,YAAa,CAJb,cAAe,CADf,oBAMJ,CAEA,yDACI,UACJ,CAEA,qDACI,wBAAyB,CAEzB,+BAAgC,CADhC,4BAEJ,CAEA,8DACI,wBAAyB,CAEzB,mCAAoC,CADpC,gCAEJ,CAEA,0BAKI,QAAS,CADT,UAAW,CADX,WAAY,CAFZ,kBAAmB,CACnB,UAIJ,CAEA,+BACI,4BAA6B,CAC7B,YACJ","file":"index.css","sourcesContent":["@import '~leaflet/dist/leaflet.css';\n@import '~leaflet-draw/dist/leaflet.draw.css';\n\n@keyframes pulse {\n\t0% {\n stroke: #155ed1;\n\t}\n\n\t70% {\n stroke: transparent;\n\t}\n\n\t100% {\n stroke: #155ed1;\n\t}\n}\n\n.leaflet-container {\n height: 100%;\n}\n\n.leaflet-touch .leaflet-bar {\n border: none;\n}\n\n.leaflet-bar a {\n line-height: 27px !important;\n color: #333333;\n border: 0.5px solid rgba(0, 0, 0, 0.1);\n background-color: #ccc;\n}\n\n.leaflet-bar a:hover {\n color: #333333;\n background-color: #ccc;\n filter: opacity(0.9);\n}\n\n.leaflet-top {\n display: flex;\n width: 50%;\n height: 50px;\n background: #333333;\n}\n\n.leaflet-right {\n display: inline-flex;\n justify-content: flex-end;\n}\n\n.leaflet-control-attribution.leaflet-control {\n display: none;\n}\n\n.leaflet-draw {\n height: 100vh;\n background: #333333;\n}\n\n.leaflet-draw.leaflet-control {\n margin: 0;\n margin-top: 50px;\n padding: 10px;\n}\n\n.leaflet-control-zoom {\n display: inline-flex;\n}\n\n.leaflet-control-zoom-in {\n border-radius: 2px !important;\n}\n\n.leaflet-control-zoom-out {\n margin-left: 2px;\n border-radius: 2px !important;\n}\n\n.leaflet-tooltip {\n padding: 0.5em 1em;\n font-weight: 600;\n color: white;\n box-shadow: none;\n text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);\n border: none;\n background: transparent;\n}\n\n.leaflet-path-draggable {\n stroke-dasharray: 10;\n animation: pulse 2s infinite;\n}\n",".leaflet-contextmenu {\n display: none;\n box-shadow: 0 1px 7px rgba(0,0,0,0.4);\n -webkit-border-radius: 4px;\n border-radius: 4px;\n padding: 4px 0;\n background-color: #fff;\n cursor: default;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n\n.leaflet-contextmenu a.leaflet-contextmenu-item {\n display: block;\n color: #222;\n font-size: 12px;\n line-height: 20px;\n text-decoration: none;\n padding: 0 12px;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n cursor: default;\n outline: none;\n}\n\n.leaflet-contextmenu a.leaflet-contextmenu-item-disabled {\n opacity: 0.5;\n}\n\n.leaflet-contextmenu a.leaflet-contextmenu-item.over {\n background-color: #f4f4f4;\n border-top: 1px solid #f0f0f0;\n border-bottom: 1px solid #f0f0f0;\n}\n\n.leaflet-contextmenu a.leaflet-contextmenu-item-disabled.over {\n background-color: inherit;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n}\n\n.leaflet-contextmenu-icon {\n margin: 2px 8px 0 0;\n width: 16px;\n height: 16px;\n float: left;\n border: 0;\n}\n\n.leaflet-contextmenu-separator {\n border-bottom: 1px solid #ccc;\n margin: 5px 0;\n}\n"]}
|