@watergis/maplibre-gl-terradraw
    Preparing search index...

    Interface ValhallaTripResult

    ValhallaTripResult interface for the response from Valhalla routing API.

    interface ValhallaTripResult {
        id: string;
        trip: {
            language: string;
            legs: ValhallaRoutingLeg[];
            locations: ValhallaRoutingLocation[];
            status: number;
            status_message: string;
            summary: ValhallaTripSummary;
            units: string;
        };
    }
    Index

    Properties

    Properties

    id: string
    trip: {
        language: string;
        legs: ValhallaRoutingLeg[];
        locations: ValhallaRoutingLocation[];
        status: number;
        status_message: string;
        summary: ValhallaTripSummary;
        units: string;
    }