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

    Type Alias Route

    Route between two points.

    type Route = {
        edges: RouteStep[];
        firstStep: RouteStep;
        from: Point;
        indications: Indication;
        lastStep: RouteStep;
        nodes: Point[];
        points: Point[];
        poiTo?: Poi;
        segments: RouteSegment[];
        steps: RouteStep[];
        to: Point;
    }
    Index

    Properties

    edges: RouteStep[]

    Ordered list of steps to go to the goal point

    firstStep: RouteStep

    First step

    from: Point

    Point where the route starts

    indications: Indication

    Ordered list of instructions to go to the destination

    lastStep: RouteStep

    Last step

    nodes: Point[]

    A collection of points of the route (not ordered)

    points: Point[]

    List of ordered points of the route

    poiTo?: Poi

    The destination Poi the user is currently navigating to

    segments: RouteSegment[]

    List of segments formed by consecutive points and a floor identifier

    steps: RouteStep[]

    Ordered list of steps to go to the goal point

    to: Point

    Last point and goal of the route