geoimport
    Preparing search index...

    Interface GeometryObjectA<P>

    interface GeometryObjectA<P extends Properties = {}> {
        bbox?: BBox;
        id?: string | number;
        properties?: P;
        type:
            | null
            | "Point"
            | "MultiPoint"
            | "LineString"
            | "MultiLineString"
            | "Polygon"
            | "MultiPolygon"
            | "GeometryCollection";
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    bbox?: BBox
    id?: string | number
    properties?: P
    type:
        | null
        | "Point"
        | "MultiPoint"
        | "LineString"
        | "MultiLineString"
        | "Polygon"
        | "MultiPolygon"
        | "GeometryCollection"