mapshaper 0.6.44 → 0.6.46
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 +326 -178
- package/package.json +2 -2
- package/www/index.html +6 -6
- package/www/mapshaper-gui.js +204 -43
- package/www/mapshaper.js +326 -178
- package/www/page.css +25 -13
package/www/page.css
CHANGED
|
@@ -58,6 +58,7 @@ body {
|
|
|
58
58
|
.colored-text,
|
|
59
59
|
.save-menu-link,
|
|
60
60
|
.save-menu-btn,
|
|
61
|
+
.add-field-btn,
|
|
61
62
|
.nav-menu-item {
|
|
62
63
|
color: #10699b;
|
|
63
64
|
}
|
|
@@ -89,7 +90,7 @@ body {
|
|
|
89
90
|
.dialog-btn {
|
|
90
91
|
display: inline-block;
|
|
91
92
|
margin-bottom: 1px;
|
|
92
|
-
margin-top:
|
|
93
|
+
margin-top: 3px;
|
|
93
94
|
font-size: 13px;
|
|
94
95
|
color: white;
|
|
95
96
|
min-width: 28px;
|
|
@@ -231,6 +232,13 @@ body {
|
|
|
231
232
|
padding: 4px 6px 5px 6px;
|
|
232
233
|
}
|
|
233
234
|
|
|
235
|
+
.export-options table {
|
|
236
|
+
margin: 0;
|
|
237
|
+
border-collapse: collapse;
|
|
238
|
+
border-spacing: 0;
|
|
239
|
+
width: 100%;
|
|
240
|
+
}
|
|
241
|
+
|
|
234
242
|
.export-layer-list {
|
|
235
243
|
max-height: 160px;
|
|
236
244
|
overflow: hidden;
|
|
@@ -273,7 +281,7 @@ body {
|
|
|
273
281
|
.alert-title {
|
|
274
282
|
line-height: 1.1;
|
|
275
283
|
font-weight: bold;
|
|
276
|
-
margin-bottom:
|
|
284
|
+
margin-bottom: 7px;
|
|
277
285
|
}
|
|
278
286
|
|
|
279
287
|
div.alert-title, div.error-message {
|
|
@@ -460,6 +468,7 @@ body.dragover #import-options-drop-area .drop-area {
|
|
|
460
468
|
margin: 0 0 5px 0;
|
|
461
469
|
}
|
|
462
470
|
|
|
471
|
+
|
|
463
472
|
#mshp-not-supported {
|
|
464
473
|
display: none;
|
|
465
474
|
z-index: 100;
|
|
@@ -548,10 +557,12 @@ body.dragover #import-options-drop-area .drop-area {
|
|
|
548
557
|
font-size: 90%;
|
|
549
558
|
}
|
|
550
559
|
|
|
560
|
+
|
|
561
|
+
|
|
551
562
|
/*.option-menu input[type="radio"],
|
|
552
563
|
.option-menu input[type="checkbox"] */
|
|
553
|
-
|
|
554
|
-
|
|
564
|
+
input[type="radio"],
|
|
565
|
+
input[type="checkbox"]
|
|
555
566
|
{
|
|
556
567
|
position: relative;
|
|
557
568
|
top: 1px;
|
|
@@ -1125,7 +1136,7 @@ img.close-btn:hover,
|
|
|
1125
1136
|
|
|
1126
1137
|
.basemap-styles > div {
|
|
1127
1138
|
display: inline-block;
|
|
1128
|
-
margin-bottom:
|
|
1139
|
+
margin-bottom: 6px;
|
|
1129
1140
|
}
|
|
1130
1141
|
|
|
1131
1142
|
.basemap-styles > div:nth-child(even) {
|
|
@@ -1233,9 +1244,7 @@ div.basemap-style-btn.active img {
|
|
|
1233
1244
|
}
|
|
1234
1245
|
|
|
1235
1246
|
.inline-checkbox {
|
|
1236
|
-
|
|
1237
|
-
top: 1px;
|
|
1238
|
-
left: 5px;
|
|
1247
|
+
margin-left: 5px;
|
|
1239
1248
|
}
|
|
1240
1249
|
|
|
1241
1250
|
#save-preference {
|
|
@@ -1314,6 +1323,7 @@ div.basemap-style-btn.active img {
|
|
|
1314
1323
|
|
|
1315
1324
|
.save-menu {
|
|
1316
1325
|
text-align: right;
|
|
1326
|
+
padding-bottom: 5px;
|
|
1317
1327
|
}
|
|
1318
1328
|
|
|
1319
1329
|
.save-menu-entry {
|
|
@@ -1324,27 +1334,29 @@ div.basemap-style-btn.active img {
|
|
|
1324
1334
|
background: white;
|
|
1325
1335
|
}
|
|
1326
1336
|
|
|
1327
|
-
|
|
1337
|
+
.save-menu-btn {
|
|
1328
1338
|
display: inline-block;
|
|
1329
1339
|
border-radius: 4px;
|
|
1330
1340
|
border: 1px solid #aaa;
|
|
1331
1341
|
font-size: 12px;
|
|
1332
1342
|
margin-left: 2px;
|
|
1333
1343
|
padding: 1px 2px 3px 2px;
|
|
1334
|
-
}
|
|
1344
|
+
}
|
|
1335
1345
|
|
|
1336
|
-
.
|
|
1346
|
+
.add-field-btn {
|
|
1337
1347
|
display: inline-block;
|
|
1338
1348
|
font-size: 12px;
|
|
1339
1349
|
margin-top: 2px;
|
|
1340
1350
|
}
|
|
1341
1351
|
|
|
1342
|
-
.save-menu-btn:hover
|
|
1352
|
+
.save-menu-btn:hover,
|
|
1353
|
+
.add-field-btn:hover {
|
|
1343
1354
|
color: black;
|
|
1344
1355
|
}
|
|
1345
1356
|
|
|
1346
1357
|
.save-menu-link,
|
|
1347
|
-
.save-menu-btn
|
|
1358
|
+
.save-menu-btn,
|
|
1359
|
+
.add-field-btn {
|
|
1348
1360
|
cursor: pointer;
|
|
1349
1361
|
}
|
|
1350
1362
|
|