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

    Type Alias Point

    Associate geographical coordinate (Location) with Building and Floor (Cartography) and cartesian coordinate relative to that building.

    type Point = {
        buildingIdentifier: string;
        cartesianCoordinate: CartesianCoordinate;
        coordinate: Coordinate;
        floorIdentifier: string;
        isIndoor?: boolean;
        isOutdoor?: boolean;
    }
    Index

    Properties

    buildingIdentifier: string

    Unique identifier for the building to which this point belongs

    cartesianCoordinate: CartesianCoordinate

    Cartesian coordinate (in meters) relative to the Bounds of building's base

    coordinate: Coordinate

    Geographic coordinate (latitude, longitude) of the point, regardless of whether it's placed inside or outside the building

    floorIdentifier: string

    Floor identifier (inside the building) where this point is placed

    isIndoor?: boolean

    If the POI is inside the building

    isOutdoor?: boolean

    If the POI is outside the building