mapshaper 0.6.101 → 0.6.103
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/LICENSE +1 -1
- package/mapshaper.js +449 -285
- package/package.json +4 -5
- package/www/index.html +1 -1
- package/www/mapshaper-gui.js +304 -127
- package/www/mapshaper.js +449 -285
- package/www/modules.js +26899 -24043
- package/www/page.css +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mapshaper",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.103",
|
|
4
4
|
"description": "A tool for editing vector datasets for mapping and GIS.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"shapefile",
|
|
@@ -28,7 +28,6 @@
|
|
|
28
28
|
"lint": "eslint --ext mjs src/",
|
|
29
29
|
"prepublishOnly": "npm lint; npm test; ./pre-publish",
|
|
30
30
|
"postpublish": "./release_web_ui; ./release_github_version",
|
|
31
|
-
"browserify": "browserify -r sync-request -r mproj -r buffer -r iconv-lite -r fs -r flatbush -r rw -r path -r kdbush -r @tmcw/togeojson -r @placemarkio/tokml -r 'idb-keyval' -o www/modules.js",
|
|
32
31
|
"dev": "rollup --config --watch"
|
|
33
32
|
},
|
|
34
33
|
"main": "./mapshaper.js",
|
|
@@ -50,13 +49,13 @@
|
|
|
50
49
|
"d3-interpolate": "^3.0.1",
|
|
51
50
|
"d3-scale-chromatic": "3.0.0",
|
|
52
51
|
"delaunator": "^5.0.0",
|
|
53
|
-
"fflate": "
|
|
52
|
+
"fflate": "0.8.2",
|
|
54
53
|
"flatbush": "^3.2.1",
|
|
55
54
|
"geokdbush": "^1.1.0",
|
|
56
55
|
"iconv-lite": "^0.6.3",
|
|
57
56
|
"idb-keyval": "^6.2.0",
|
|
58
57
|
"kdbush": "^3.0.0",
|
|
59
|
-
"mproj": "0.0.
|
|
58
|
+
"mproj": "0.0.40",
|
|
60
59
|
"msgpackr": "^1.10.1",
|
|
61
60
|
"opn": "^5.3.0",
|
|
62
61
|
"rw": "~1.3.3",
|
|
@@ -64,9 +63,9 @@
|
|
|
64
63
|
"tinyqueue": "^2.0.3"
|
|
65
64
|
},
|
|
66
65
|
"devDependencies": {
|
|
66
|
+
"@rollup/plugin-commonjs": "^28.0.6",
|
|
67
67
|
"@rollup/plugin-json": "^6.0.1",
|
|
68
68
|
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
69
|
-
"browserify": "^17.0.0",
|
|
70
69
|
"csv-spectrum": "^1.0.0",
|
|
71
70
|
"eslint": "^8.16.0",
|
|
72
71
|
"mocha": "^10.2.0",
|
package/www/index.html
CHANGED
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
<div class="select-btn btn sidebar-btn">Select</div>
|
|
122
122
|
<div class="clip-btn btn sidebar-btn">Clip</div>
|
|
123
123
|
<div class="erase-btn btn sidebar-btn">Erase</div>
|
|
124
|
-
<div class="rect-btn btn sidebar-btn">
|
|
124
|
+
<div class="rect-btn btn sidebar-btn">To shape</div>
|
|
125
125
|
<div class="frame-btn btn sidebar-btn">Frame</div>
|
|
126
126
|
<div class="info-btn btn sidebar-btn">Bounds</div>
|
|
127
127
|
<div class="box-coords selectable"></div>
|