LineString
data class LineString @JvmOverloads constructor(val coordinates: List<Position>, val bbox: BoundingBox? = null) : SingleGeometry, LineStringGeometry(source)
A LineString geometry represents a curve in coordinate space with two or more Position objects.
See RFC 7946 Section 3.1.4 for the full specification.
See also
Throws
if the coordinates contain fewer than two Position objects
Constructors
Link copied to clipboard
Create a LineString by a number of Position objects.
Create a LineString by the Position objects of a number of Point objects.
Create a LineString by an array of DoubleArray objects that each represent a Position.
Types
Link copied to clipboard
object Companion
Factory methods for creating and serializing LineString objects.
Properties
Link copied to clipboard
The BoundingBox of this LineString.
Link copied to clipboard
The Positions of this LineString.