A GeoJSON line.

interface GeoJSONLineString {
    coordinates: number[][];
    type: "LineString";
}

Properties

Properties

coordinates: number[][]

The line coordinates.

type

The type of GeoJSON geometry.