Skip to main content

lineString

Creates a LineString geometry from an array of positions.

Line string must contain at least 2 positions. Empty line strings with 0 positions are allowed.

Type Parameters

  • P

Parameters

NameTypeDefaultDescription
ptsPosition[]LineString coordinates
options?objectOptional geometry options
options.id?number | stringOptional identifier to be assigned to the geometry instance.
options.properties?POptional 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:
  • Trim unwanted Z or M ordinates from the input.
  • Treat the third ordinate as M instead of Z.

Returns

LineString<P>

A new LineString geometry

Throws

Examples