Skip to content

Commit bbbf9e6

Browse files
committed
v0.6.112
1 parent 336588d commit bbbf9e6

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v0.6.112
2+
* Support for drag-dropping or pasting datafile hyperlinks from a web page onto the web UI.
3+
* Added -o show-all option for exporting snapshots from the CLI with all layers visible in GUI.
4+
15
v0.6.111
26
* Switched to better-performing robust segment geometry functions using BigInt (instead of big.js).
37

REFERENCE.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# COMMAND REFERENCE
22

3-
This documentation applies to version 0.6.105 of mapshaper's command line program. Run `mapshaper -v` to check your version. For an introduction to the command line tool, read [this page](https://github.com/mbloch/mapshaper/wiki/Introduction-to-the-Command-Line-Tool) first.
3+
This documentation applies to version 0.6.112 of mapshaper's command line program. Run `mapshaper -v` to check your version. For an introduction to the command line tool, read [this page](https://github.com/mbloch/mapshaper/wiki/Introduction-to-the-Command-Line-Tool) first.
44

55
## Command line syntax
66

@@ -275,6 +275,8 @@ Save content of the target layer(s) to a file or files.
275275

276276
`decimal-comma` (CSV) Export numbers with decimal commas instead of decimal points (common in Europe and elsewhere).
277277

278+
`show-all` [Snapshot] All layers of the exported snapshot will be displayed when opened in the web UI.
279+
278280
**Example**
279281
```bash
280282
# Convert all the Shapefiles in one directory into GeoJSON files in a different directory.
@@ -1102,7 +1104,7 @@ Expression context:
11021104
If command has a single target layer:
11031105
`target` object provides data and information about the command's target layer
11041106
- `target.layer_name` Name of layer
1105-
- `target.geojson` (getter) Returns a GeoJSON FeatureCollection for the layer
1107+
- `target.geojson` (getter/setter) Returns a GeoJSON FeatureCollection for the layer (getter) or replaces the layer with the contents of a GeoJSON object (setter).
11061108
- `target.geometry_type` One of: polygon, polyline, point, `undefined`
11071109
- `target.feature_count` Number of features in the layer
11081110
- `target.null_shape_count` Number of features with null geometry

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mapshaper",
3-
"version": "0.6.111",
3+
"version": "0.6.112",
44
"description": "A tool for editing vector datasets for mapping and GIS.",
55
"keywords": [
66
"shapefile",

0 commit comments

Comments
 (0)