POLAR reference
    Preparing search index...

    Interface PolarGeoJsonFeature<G, P>

    interface PolarGeoJsonFeature<
        G extends UsedGeometry
        | null = UsedGeometry,
        P = GeoJsonProperties,
    > {
        geometry: G;
        properties: P;
        title: string;
        type: "Feature" | "reverse_geocoded";
        bbox?: BBox;
        id?: string | number;
    }

    Type Parameters

    • G extends UsedGeometry | null = UsedGeometry
    • P = GeoJsonProperties

    Hierarchy

    • Omit<Feature<G, P>, "type">
      • PolarGeoJsonFeature
    Index

    Properties

    geometry: G

    The feature's geometry

    properties: P

    Properties associated with this feature.

    title: string

    A fieldName to use for display purposes.

    type: "Feature" | "reverse_geocoded"
    bbox?: BBox

    Bounding box of the coordinate range of the object's Geometries, Features, or Feature Collections. The value of the bbox member is an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries. https://tools.ietf.org/html/rfc7946#section-5

    id?: string | number

    A value that uniquely identifies this feature in a https://tools.ietf.org/html/rfc7946#section-3.2.