A GeoJSON polygon.

interface GeoJSONPolygon {
    coordinates: number[][][];
    type: "Polygon";
}

Properties

Properties

coordinates: number[][][]

The polygon coordinates.

type

The type of GeoJSON geometry.