A GeoJSON point.

interface GeoJSONPoint {
    coordinates: number[];
    type: "Point";
}

Properties

Properties

coordinates: number[]

The point coordinates.

type

The type of GeoJSON geometry.