multiLineString
Creates a MultiLineString geometry from an array of line strings coordinates
or an array of LineStrings.
Each line string must contain at least 2 positions. Empty line strings with 0 positions are allowed.
Type Parameters
-
P
Parameters
| Name | Type | Default | Description |
|---|---|---|---|
data | Position[][] | LineString[] | MultiLineString coordinates or an array of LineStrings | |
options? | object | Optional geometry options | |
options.id? | number | string | Optional identifier to be assigned to the geometry instance. | |
options.properties? | P | Optional data to be assigned to the geometry instance. | |
options.layout? | 'XY' | 'XYZ' | 'XYZM' | 'XYM' | 'XYZM' | Coordinate layout for interpreting GeoJSON coordinates. Defines how to interpret the coordinates of input geometries. This does not force the dimension of the resulting geometries - the actual geometry dimension will be determined from the parsed data. Use this to:
|
options.consume? | boolean | false | Whether to consume the input geometries - consumed geometries become detached, are no longer valid and should not be used. When true the ownership of input geometries is passed to created collection geometry, no extra copies are made, but the input geometries can no longer be used on their own. When false the clones of input geometries are used to create a collection geometry. |
Returns
MultiLineString<P>
A new MultiLineString geometry
Throws
InvalidGeoJSONErroron line with 1 positionGEOSErrorwhen any of the input geometries is not aLineString