Taos API Reference
    Preparing search index...

    Interface GeoPolygonPrimitive

    A polygon primitive (a Polygon / each part of a MultiPolygon). rings[0] is the exterior ring; any further rings are holes. Rings keep their GeoJSON winding (exterior CCW, holes CW per the spec) but the builders are orientation-agnostic.

    interface GeoPolygonPrimitive {
        rings: GeoPosition[][];
        properties: GeoProperties;
        id?: string | number;
    }
    Index

    Properties

    Properties

    rings: GeoPosition[][]
    properties: GeoProperties
    id?: string | number