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

Properties

Properties

coordinates: number[]

Longitude (stored on index [0]) and latitude (stored on index [1]) of the Point.

type: "Point"

Generated using TypeDoc