Represents a collection of LineString geometries.
const mls: MultiLineString = { type: 'MultiLineString', hasZ: false, hasM: false, lineStrings: [ { type: 'LineString', hasZ: false, hasM: false, coordinates: [0, 0, 1, 1] }, ],}; Copy
const mls: MultiLineString = { type: 'MultiLineString', hasZ: false, hasM: false, lineStrings: [ { type: 'LineString', hasZ: false, hasM: false, coordinates: [0, 0, 1, 1] }, ],};
Whether the geometry includes M (measure) values.
Whether the geometry includes Z (elevation/altitude) values.
The array of LineString geometries contained in this collection.
Discriminant literal identifying this geometry as a MultiLineString.
Represents a collection of LineString geometries.
Example