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

    Type Alias Geofence

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

    type Geofence = {
        buildingIdentifier: string;
        customFields: object;
        floorIdentifier: string;
        identifier: string;
        infoHtml: string;
        name: string;
        polygonPoints: Point[];
    }
    Index

    Properties

    buildingIdentifier: string

    Identifier of building to which the POI belongs

    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

    name: string

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

    polygonPoints: Point[]

    List of points of that define the area of the geofence