归一化的路径规划结果

interface NormalizedRouteResult {
    routeType: RoutePlanType;
    start: NormalizedPoint;
    end: NormalizedPoint;
    plans: NormalizedPlan[];
}

Properties

routeType: RoutePlanType

路径规划类型

起点信息

终点信息

方案数组