Interface Geometry

A GeoJSON geometry object

interface Geometry {
    coordinates:
        | Coordinate
        | Coordinate[]
        | Coordinate[][]
        | Coordinate[][][];
    type: GeometryType;
}

Properties

Properties

coordinates: Coordinate | Coordinate[] | Coordinate[][] | Coordinate[][][]

The coordinates of the geometry

The type of the geometry