mapshaper 0.6.108 → 0.6.110
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/bin/mapshaper-gui +3 -2
- package/mapshaper.js +1782 -516
- package/package.json +2 -1
- package/www/assets/SourceSans3-VariableFont_wght.ttf +0 -0
- package/www/elements.css +1 -1
- package/www/index.html +45 -51
- package/www/mapshaper-gui.js +200 -25
- package/www/mapshaper.js +1782 -516
- package/www/page.css +21 -23
- package/www/assets/SourceSansPro-Regular.woff +0 -0
- package/www/assets/SourceSansPro-Semibold.woff +0 -0
package/www/page.css
CHANGED
|
@@ -3,17 +3,9 @@
|
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
@font-face {
|
|
6
|
-
font-family: '
|
|
7
|
-
|
|
8
|
-
font-
|
|
9
|
-
src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url('assets/SourceSansPro-Regular.woff') format('woff');
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
@font-face {
|
|
13
|
-
font-family: 'Source Sans Pro';
|
|
14
|
-
font-style: normal;
|
|
15
|
-
font-weight: bold;
|
|
16
|
-
src: local('Source Sans Pro Semibold'), local('SourceSansPro-Semibold'), url('assets/SourceSansPro-Semibold.woff') format('woff');
|
|
6
|
+
font-family: 'SourceSans3';
|
|
7
|
+
src: url('assets/SourceSans3-VariableFont_wght.ttf') format('truetype');
|
|
8
|
+
font-display: swap;
|
|
17
9
|
}
|
|
18
10
|
|
|
19
11
|
@font-face {
|
|
@@ -32,7 +24,8 @@ html, body {
|
|
|
32
24
|
body {
|
|
33
25
|
overflow: hidden;
|
|
34
26
|
background-color: #f8fdff;
|
|
35
|
-
font: 14px/1.4 '
|
|
27
|
+
font: 14px/1.4 'SourceSans3', Arial, sans-serif;
|
|
28
|
+
font-weight: 400;
|
|
36
29
|
color: #444;
|
|
37
30
|
user-select: none;
|
|
38
31
|
-webkit-user-select: none;
|
|
@@ -113,6 +106,7 @@ body.map-view {
|
|
|
113
106
|
margin-top: 3px;
|
|
114
107
|
font-size: 13px;
|
|
115
108
|
color: white;
|
|
109
|
+
font-weight: 500;
|
|
116
110
|
min-width: 28px;
|
|
117
111
|
}
|
|
118
112
|
|
|
@@ -153,9 +147,9 @@ body.map-view {
|
|
|
153
147
|
}
|
|
154
148
|
|
|
155
149
|
.mapshaper-logo {
|
|
156
|
-
font-weight:
|
|
150
|
+
font-weight: 600;
|
|
157
151
|
font-size: 17px;
|
|
158
|
-
margin:
|
|
152
|
+
margin: 3px 0 0 11px;
|
|
159
153
|
}
|
|
160
154
|
|
|
161
155
|
.mapshaper-logo .logo-highlight {
|
|
@@ -187,8 +181,8 @@ body.map-view {
|
|
|
187
181
|
box-sizing: border-box;
|
|
188
182
|
border-radius: 1px;
|
|
189
183
|
font-size: 14px;
|
|
190
|
-
font-weight:
|
|
191
|
-
padding:
|
|
184
|
+
font-weight: 600;
|
|
185
|
+
padding: 8px 8px 0px 8px;
|
|
192
186
|
}
|
|
193
187
|
|
|
194
188
|
.page-header .header-btn.disabled,
|
|
@@ -242,7 +236,6 @@ body.map-view {
|
|
|
242
236
|
|
|
243
237
|
.export-options .dialog-btn {
|
|
244
238
|
min-width: 20px;
|
|
245
|
-
padding: 4px 6px 5px 6px;
|
|
246
239
|
}
|
|
247
240
|
|
|
248
241
|
.export-options table {
|
|
@@ -301,7 +294,7 @@ body.map-view {
|
|
|
301
294
|
|
|
302
295
|
.alert-title {
|
|
303
296
|
line-height: 1.1;
|
|
304
|
-
font-weight:
|
|
297
|
+
font-weight: 600;
|
|
305
298
|
margin-bottom: 7px;
|
|
306
299
|
}
|
|
307
300
|
|
|
@@ -464,7 +457,7 @@ div.alert-box {
|
|
|
464
457
|
line-height: 1;
|
|
465
458
|
margin-bottom: 5px;
|
|
466
459
|
font-size: 14px;
|
|
467
|
-
font-weight:
|
|
460
|
+
font-weight: 600;
|
|
468
461
|
}
|
|
469
462
|
|
|
470
463
|
.popup-dialog {
|
|
@@ -473,6 +466,11 @@ div.alert-box {
|
|
|
473
466
|
text-align: center;
|
|
474
467
|
}
|
|
475
468
|
|
|
469
|
+
.popup-dialog.popup-align-left {
|
|
470
|
+
text-align: left;
|
|
471
|
+
padding-left: 12px;
|
|
472
|
+
}
|
|
473
|
+
|
|
476
474
|
.info-box,.popup {
|
|
477
475
|
border-radius: 9px;
|
|
478
476
|
border: 1px solid #d5d5d5;
|
|
@@ -552,7 +550,7 @@ div.alert-box {
|
|
|
552
550
|
|
|
553
551
|
.info-box p {
|
|
554
552
|
white-space: pre-line;
|
|
555
|
-
margin: 0 0
|
|
553
|
+
margin: 0 0 6px 0;
|
|
556
554
|
line-height: 1.2;
|
|
557
555
|
/* font-size: 90%; */
|
|
558
556
|
}
|
|
@@ -771,7 +769,7 @@ body.simplify .layer-control-btn {
|
|
|
771
769
|
|
|
772
770
|
.layer-control .no-layer-note {
|
|
773
771
|
color: #777;
|
|
774
|
-
margin: 4px 0
|
|
772
|
+
margin: 4px 0 5px 0;
|
|
775
773
|
}
|
|
776
774
|
|
|
777
775
|
.layer-menu .layer-list {
|
|
@@ -1467,12 +1465,12 @@ body.pan.panning .map-layers:not(.drawing) {
|
|
|
1467
1465
|
}
|
|
1468
1466
|
|
|
1469
1467
|
.save-item-label {
|
|
1470
|
-
font-weight:
|
|
1468
|
+
font-weight: 600;
|
|
1471
1469
|
}
|
|
1472
1470
|
|
|
1473
1471
|
.save-item-size {
|
|
1474
1472
|
/*color: #999;*/
|
|
1475
|
-
font-weight:
|
|
1473
|
+
font-weight: 600;
|
|
1476
1474
|
font-size: 11px;
|
|
1477
1475
|
letter-spacing: 0.5;
|
|
1478
1476
|
}
|
|
Binary file
|
|
Binary file
|