mapshaper 0.6.117 → 0.6.119
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/README.md +12 -0
- package/mapshaper.js +1228 -288
- package/package.json +1 -1
- package/www/donate.html +215 -0
- package/www/index.html +5 -1
- package/www/mapshaper-gui.js +214 -17
- package/www/mapshaper.js +1228 -288
- package/www/page.css +17 -0
package/www/page.css
CHANGED
|
@@ -195,6 +195,11 @@ body.map-view {
|
|
|
195
195
|
.btn.toggle-btn.active {
|
|
196
196
|
background-color: black;
|
|
197
197
|
}
|
|
198
|
+
|
|
199
|
+
#donate-btn {
|
|
200
|
+
color: #ffa;
|
|
201
|
+
}
|
|
202
|
+
|
|
198
203
|
.separator {
|
|
199
204
|
border-left: 1px solid white;
|
|
200
205
|
height: 10px;
|
|
@@ -256,6 +261,18 @@ body.map-view {
|
|
|
256
261
|
white-space: nowrap;
|
|
257
262
|
}
|
|
258
263
|
|
|
264
|
+
.gpkg-layer-list .gpkg-layer-item {
|
|
265
|
+
display: block;
|
|
266
|
+
white-space: nowrap;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.gpkg-layer-list {
|
|
270
|
+
max-height: 200px;
|
|
271
|
+
overflow: hidden;
|
|
272
|
+
overflow-y: auto;
|
|
273
|
+
margin-right: -3px;
|
|
274
|
+
}
|
|
275
|
+
|
|
259
276
|
/* --- Main area ------------- */
|
|
260
277
|
|
|
261
278
|
.main-area {
|