mbus-backend
    Preparing search index...

    Type Alias LandmarkDef

    Definition for a navigation landmark used in the ALT heuristic algorithm.

    type LandmarkDef = {
        lat: number;
        lon: number;
        name: string;
        nodeId?: string;
    }
    Index

    Properties

    Properties

    lat: number

    Latitude coordinate.

    lon: number

    Longitude coordinate.

    name: string

    Display name of the landmark.

    nodeId?: string

    The Graph Node ID nearest to this landmark (computed at runtime).