表示路线中的一节点,节点包括:路线起终点,公交站点等

interface RouteNode {
    title: string;
    location: null | LatLng;
    uid: string;
}

Hierarchy (view full)

Properties

Properties

title: string
location: null | LatLng
uid: string