MenuData.js 2.6 KB
Newer Older
Y
Yu Cao 已提交
1
export default [
V
Vivian Lin 已提交
2 3 4 5 6 7 8 9 10
    {
        id: 'camera',
        title: 'Point of View',
        type: 'radio',
        data: {
            1: 'Default',
            2: 'Near',
            3: 'Overhead',
            4: 'Map'
V
vlin17 已提交
11 12
        },
        supportInOfflineView: true,
V
Vivian Lin 已提交
13
    },
Y
Yu Cao 已提交
14 15 16 17 18
    {
        id: 'perception',
        title: 'Perception',
        type: 'checkbox',
        data: {
U
unacao 已提交
19
            perceptionPointCloud: 'Point Cloud',
Y
Yu Cao 已提交
20 21 22 23
            perceptionVehicle: 'Vehicle',
            perceptionPedestrian: 'Pedestrian',
            perceptionBicycle: 'Bicycle',
            perceptionUnknownMovable: 'Unknown Movable',
24
            perceptionUnknownUnmovable: 'Unknown Stationary',
Y
Yu Cao 已提交
25
            perceptionUnknown: 'Unknown',
U
unacao 已提交
26
            perceptionCipv: 'Closest In-Path Vehicle',
27 28
            perceptionVelocity: 'Velocity',
            perceptionHeading: 'Heading',
Y
Yu Cao 已提交
29
            perceptionId: 'Id'
V
vlin17 已提交
30 31
        },
        supportInOfflineView: true,
Y
Yu Cao 已提交
32 33 34 35 36 37 38
    }, {
        id: 'prediction',
        title: 'Prediction',
        type: 'checkbox',
        data: {
            predictionMajor: 'Major Prediction Line',
            predictionMinor: 'Minor Prediction Line'
V
vlin17 已提交
39 40
        },
        supportInOfflineView: true,
Y
Yu Cao 已提交
41 42 43 44 45
    }, {
        id: 'routing',
        title: 'Routing',
        type: 'checkbox',
        data: {
U
unacao 已提交
46
            routing: 'Routing Line'
V
vlin17 已提交
47 48
        },
        supportInOfflineView: true,
Y
Yu Cao 已提交
49 50 51 52 53 54 55
    }, {
        id: 'decision',
        title: 'Decision',
        type: 'checkbox',
        data: {
            decisionMain: 'Main Decision',
            decisionObstacle: 'Obstacle Decision',
V
vlin17 已提交
56 57
        },
        supportInOfflineView: true,
Y
Yu Cao 已提交
58 59 60 61 62
    }, {
        id: 'planning',
        title: 'Planning',
        type: 'checkbox',
        data: {
63
            planningCar: 'Planning Car',
64
            planningLine: 'Planning Line',
65
            planningQpOptimizer: 'Qp Optimizer Line',
66
            planningDpOptimizer: 'Dp Optimizer Line',
67
            planningReference: 'Reference Line',
V
vlin17 已提交
68 69
        },
        supportInOfflineView: true,
V
vlin17 已提交
70 71 72 73 74 75 76
    }, {
        id: 'position',
        title: 'Position',
        type: 'checkbox',
        data: {
            positionLocalization: 'Localization',
            positionGps: 'GPS',
V
vlin17 已提交
77 78
        },
        supportInOfflineView: false,
79 80 81 82 83 84 85 86 87 88 89 90
    }, {
        id: 'map',
        title: 'Map',
        type: 'checkbox',
        data: {
            mapCrosswalk: 'Crosswalk',
            mapClearArea: 'Clear Area',
            mapJunction: 'Junction',
            mapLane: 'Lane',
            mapRoad: 'Road',
            mapSignal: 'Signal',
            mapStopSign: 'Stop Sign',
V
vlin17 已提交
91 92
        },
        supportInOfflineView: false,
V
Vivian Lin 已提交
93
    },
Y
Yu Cao 已提交
94
];