mapshaper 0.6.80 → 0.6.82
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/mapshaper.js +3 -3
- package/package.json +2 -2
- package/www/index.html +1 -2
- package/www/mapshaper-gui.js +146 -127
- package/www/mapshaper.js +3 -3
- package/www/modules.js +1856 -140
- package/www/page.css +10 -17
package/www/page.css
CHANGED
|
@@ -44,6 +44,7 @@ body.map-view {
|
|
|
44
44
|
background-color: #fff;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
+
|
|
47
48
|
.fade-out {
|
|
48
49
|
animation: fadeOut ease forwards 0.6s;
|
|
49
50
|
}
|
|
@@ -151,21 +152,6 @@ body.map-view {
|
|
|
151
152
|
height: 29px;
|
|
152
153
|
}
|
|
153
154
|
|
|
154
|
-
.basemap-on .coordinate-info {
|
|
155
|
-
left: 100px;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.coordinate-info {
|
|
159
|
-
z-index: 1;
|
|
160
|
-
position: absolute;
|
|
161
|
-
bottom: 7px;
|
|
162
|
-
left: 7px;
|
|
163
|
-
padding: 2px 5px 2px 5px;
|
|
164
|
-
font-size: 11px;
|
|
165
|
-
pointer-events: none;
|
|
166
|
-
background: rgba(255,255,255,0.4);
|
|
167
|
-
}
|
|
168
|
-
|
|
169
155
|
.mapshaper-logo {
|
|
170
156
|
font-weight: bold;
|
|
171
157
|
font-size: 17px;
|
|
@@ -1206,14 +1192,21 @@ div.basemap-style-btn.active img {
|
|
|
1206
1192
|
}
|
|
1207
1193
|
|
|
1208
1194
|
.map-layers.add-points,
|
|
1209
|
-
.map-layers.
|
|
1195
|
+
.map-layers.draw-tool {
|
|
1210
1196
|
cursor: crosshair;
|
|
1211
1197
|
}
|
|
1212
1198
|
|
|
1213
|
-
.map-layers.
|
|
1199
|
+
.map-layers.draw-tool.dragging {
|
|
1214
1200
|
cursor: default;
|
|
1215
1201
|
}
|
|
1216
1202
|
|
|
1203
|
+
body.pan .map-layers:not(.drawing) {
|
|
1204
|
+
cursor: grab;
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
body.pan.panning .map-layers:not(.drawing) {
|
|
1208
|
+
cursor: grabbing;
|
|
1209
|
+
}
|
|
1217
1210
|
.map-layers canvas {
|
|
1218
1211
|
pointer-events: none;
|
|
1219
1212
|
position: absolute;
|