multiLineString
Description
Creates a Feature<MultiLineString> based on a coordinate array. Properties can be added optionally.
Parameters
Name | Type | Description |
---|---|---|
coordinates | Array<Array<Array<number>>> | an array of LineStrings |
properties? | Object | an Object of key-value pairs to add as properties (default {}) |
options? | Object | Optional Parameters (default {}) |
options.bbox? | Array<number> | Bounding Box Array [west, south, east, north] associated with the Feature |
options.id? | string | number | Identifier associated with the Feature |
Returns
Feature<MultiLineString> a MultiLineString feature
Examples
var multiLine = turf.multiLineString([
[
[0, 0],
[10, 10],
],
]);
//=multiLine
Installation
$ npm install @turf/helpers
import { multiLineString } from "@turf/helpers";
const result = multiLineString(...);
$ npm install @turf/turf
import * as turf from "@turf/turf";
const result = turf.multiLineString(...);