mbus-backend
    Preparing search index...

    Interface BatchWalkingResult

    Result of a batch query from a single origin node to multiple destinations.

    interface BatchWalkingResult {
        distanceToNode: number;
        nearestNodeId: string;
        nodeDistances: Map<string, number>;
    }
    Index

    Properties

    distanceToNode: number

    The straight-line distance from the origin coordinates to the street node.

    nearestNodeId: string

    The ID of the street node closest to the origin coordinates.

    nodeDistances: Map<string, number>

    A map of NodeID -> Distance (in meters) for all reachable nodes.