mapshaper 0.6.63 → 0.6.66
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 +601 -385
- package/package.json +1 -1
- package/www/index.html +4 -3
- package/www/mapshaper-gui.js +495 -245
- package/www/mapshaper.js +601 -385
- package/www/page.css +16 -1
package/package.json
CHANGED
package/www/index.html
CHANGED
|
@@ -104,8 +104,8 @@
|
|
|
104
104
|
<h4>Source files</h4>
|
|
105
105
|
<div class="file-list"></div>
|
|
106
106
|
<div>
|
|
107
|
-
<div id="add-file-btn" class="dialog-btn btn">Add
|
|
108
|
-
|
|
107
|
+
<div id="add-file-btn" class="dialog-btn btn">Add files</div>
|
|
108
|
+
<div id="add-empty-btn" class="dialog-btn btn">Add empty layer</div>
|
|
109
109
|
</div>
|
|
110
110
|
</div>
|
|
111
111
|
</div>
|
|
@@ -134,7 +134,8 @@
|
|
|
134
134
|
<div class="filter-btn btn dialog-btn">Keep</div>
|
|
135
135
|
<div class="duplicate-btn btn dialog-btn">Duplicate</div>
|
|
136
136
|
<div class="split-btn btn dialog-btn">Split</div>
|
|
137
|
-
<div class="coords-btn btn dialog-btn">Coords</div>
|
|
137
|
+
<div class="coords-btn btn dialog-btn toggle-btn">Coords</div>
|
|
138
|
+
<div class="data-btn btn dialog-btn toggle-btn">Edit data</div>
|
|
138
139
|
<div class="cancel-btn btn dialog-btn">Clear</div>
|
|
139
140
|
</div>
|
|
140
141
|
<div class="box-coords selectable"></div>
|