mapshaper 0.6.45 → 0.6.47
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 +319 -160
- package/package.json +1 -1
- package/www/index.html +6 -6
- package/www/mapshaper-gui.js +141 -36
- package/www/mapshaper.js +319 -160
- package/www/page.css +16 -8
package/www/page.css
CHANGED
|
@@ -90,7 +90,7 @@ body {
|
|
|
90
90
|
.dialog-btn {
|
|
91
91
|
display: inline-block;
|
|
92
92
|
margin-bottom: 1px;
|
|
93
|
-
margin-top:
|
|
93
|
+
margin-top: 3px;
|
|
94
94
|
font-size: 13px;
|
|
95
95
|
color: white;
|
|
96
96
|
min-width: 28px;
|
|
@@ -232,6 +232,13 @@ body {
|
|
|
232
232
|
padding: 4px 6px 5px 6px;
|
|
233
233
|
}
|
|
234
234
|
|
|
235
|
+
.export-options table {
|
|
236
|
+
margin: 0;
|
|
237
|
+
border-collapse: collapse;
|
|
238
|
+
border-spacing: 0;
|
|
239
|
+
width: 100%;
|
|
240
|
+
}
|
|
241
|
+
|
|
235
242
|
.export-layer-list {
|
|
236
243
|
max-height: 160px;
|
|
237
244
|
overflow: hidden;
|
|
@@ -274,7 +281,7 @@ body {
|
|
|
274
281
|
.alert-title {
|
|
275
282
|
line-height: 1.1;
|
|
276
283
|
font-weight: bold;
|
|
277
|
-
margin-bottom:
|
|
284
|
+
margin-bottom: 7px;
|
|
278
285
|
}
|
|
279
286
|
|
|
280
287
|
div.alert-title, div.error-message {
|
|
@@ -461,6 +468,7 @@ body.dragover #import-options-drop-area .drop-area {
|
|
|
461
468
|
margin: 0 0 5px 0;
|
|
462
469
|
}
|
|
463
470
|
|
|
471
|
+
|
|
464
472
|
#mshp-not-supported {
|
|
465
473
|
display: none;
|
|
466
474
|
z-index: 100;
|
|
@@ -549,10 +557,12 @@ body.dragover #import-options-drop-area .drop-area {
|
|
|
549
557
|
font-size: 90%;
|
|
550
558
|
}
|
|
551
559
|
|
|
560
|
+
|
|
561
|
+
|
|
552
562
|
/*.option-menu input[type="radio"],
|
|
553
563
|
.option-menu input[type="checkbox"] */
|
|
554
|
-
|
|
555
|
-
|
|
564
|
+
input[type="radio"],
|
|
565
|
+
input[type="checkbox"]
|
|
556
566
|
{
|
|
557
567
|
position: relative;
|
|
558
568
|
top: 1px;
|
|
@@ -1126,7 +1136,7 @@ img.close-btn:hover,
|
|
|
1126
1136
|
|
|
1127
1137
|
.basemap-styles > div {
|
|
1128
1138
|
display: inline-block;
|
|
1129
|
-
margin-bottom:
|
|
1139
|
+
margin-bottom: 6px;
|
|
1130
1140
|
}
|
|
1131
1141
|
|
|
1132
1142
|
.basemap-styles > div:nth-child(even) {
|
|
@@ -1234,9 +1244,7 @@ div.basemap-style-btn.active img {
|
|
|
1234
1244
|
}
|
|
1235
1245
|
|
|
1236
1246
|
.inline-checkbox {
|
|
1237
|
-
|
|
1238
|
-
top: 1px;
|
|
1239
|
-
left: 5px;
|
|
1247
|
+
margin-left: 5px;
|
|
1240
1248
|
}
|
|
1241
1249
|
|
|
1242
1250
|
#save-preference {
|