@situm/react-native
    Preparing search index...

    Type Alias Poi

    Point of Interest, associated to a building, regardless of whether it's placed inside or outside the building.

    type Poi = {
        buildingIdentifier: string;
        cartesianCoordinate: CartesianCoordinate;
        category: PoiCategory;
        coordinate: Coordinate;
        customFields: object;
        floorIdentifier: string;
        identifier: string;
        infoHtml: string;
        isIndoor: boolean;
        isOutdoor: boolean;
        poiName: string;
        position: Point;
    }
    Index

    Properties

    buildingIdentifier: string

    Identifier of building to which the POI belongs

    cartesianCoordinate: CartesianCoordinate

    Cartesian coordinate of this position, relative to building Bounds

    category: PoiCategory

    Category of the POI

    coordinate: Coordinate

    Geographical coordinate of this position

    customFields: object

    Map of custom fields, indexed by their name

    floorIdentifier: string

    If this POI is outside the building (isOutdoor == true), this field has no meaning

    identifier: string

    The unique identifier of the resource

    infoHtml: string

    Additional information about POI, in HTML

    isIndoor: boolean

    Whether the POI is placed outside the building or not

    isOutdoor: boolean

    Whether the POI is placed outside the building or not

    poiName: string

    A name for the POI, appropriate for display to the user

    position: Point

    Point where the point is located