@heumes-it/expo-mapbox-navigation - v0.1.0
    Preparing search index...

    Interface DirectionsRouteOptions

    The request-options subset that Mapbox echoes back in the Directions API response. Uses the wire field names (e.g. profile is slash-prefixed like 'mapbox/driving-traffic').

    interface DirectionsRouteOptions {
        alternatives?: boolean;
        banner_instructions?: boolean;
        continue_straight?: boolean;
        coordinates: [number, number][];
        geometries?: string;
        language?: string;
        overview?: string;
        profile: string;
        steps?: boolean;
        voice_instructions?: boolean;
        [extra: string]: unknown;
    }

    Indexable

    • [extra: string]: unknown
    Index

    Properties

    alternatives?: boolean
    banner_instructions?: boolean
    continue_straight?: boolean
    coordinates: [number, number][]
    geometries?: string
    language?: string
    overview?: string
    profile: string
    steps?: boolean
    voice_instructions?: boolean