MenuData.js 2.8 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',
29
            perceptionId: 'Id',
30
            perceptionObstacleInfo: 'Distance and Speed',
31
            perceptionLaneMarker: 'Lane Marker',
V
vlin17 已提交
32 33
        },
        supportInOfflineView: true,
Y
Yu Cao 已提交
34 35 36 37 38 39 40
    }, {
        id: 'prediction',
        title: 'Prediction',
        type: 'checkbox',
        data: {
            predictionMajor: 'Major Prediction Line',
            predictionMinor: 'Minor Prediction Line'
V
vlin17 已提交
41 42
        },
        supportInOfflineView: true,
Y
Yu Cao 已提交
43 44 45 46 47
    }, {
        id: 'routing',
        title: 'Routing',
        type: 'checkbox',
        data: {
U
unacao 已提交
48
            routing: 'Routing Line'
V
vlin17 已提交
49 50
        },
        supportInOfflineView: true,
Y
Yu Cao 已提交
51 52 53 54 55 56 57
    }, {
        id: 'decision',
        title: 'Decision',
        type: 'checkbox',
        data: {
            decisionMain: 'Main Decision',
            decisionObstacle: 'Obstacle Decision',
V
vlin17 已提交
58 59
        },
        supportInOfflineView: true,
Y
Yu Cao 已提交
60 61 62 63 64
    }, {
        id: 'planning',
        title: 'Planning',
        type: 'checkbox',
        data: {
65
            planningCar: 'Planning Car',
66
            planningLine: 'Planning Line',
67
            planningQpOptimizer: 'Qp Optimizer Line',
68
            planningDpOptimizer: 'Dp Optimizer Line',
69
            planningReference: 'Reference Line',
V
vlin17 已提交
70 71
        },
        supportInOfflineView: true,
V
vlin17 已提交
72 73 74 75 76 77 78
    }, {
        id: 'position',
        title: 'Position',
        type: 'checkbox',
        data: {
            positionLocalization: 'Localization',
            positionGps: 'GPS',
V
vlin17 已提交
79
        },
80
        supportInOfflineView: true,
81 82 83 84 85 86 87 88 89 90 91 92
    }, {
        id: 'map',
        title: 'Map',
        type: 'checkbox',
        data: {
            mapCrosswalk: 'Crosswalk',
            mapClearArea: 'Clear Area',
            mapJunction: 'Junction',
            mapLane: 'Lane',
            mapRoad: 'Road',
            mapSignal: 'Signal',
            mapStopSign: 'Stop Sign',
93 94
            mapSpeedBump: 'Speed Bump',
            mapParkingSpace: 'Parking Space',
V
vlin17 已提交
95 96
        },
        supportInOfflineView: false,
V
Vivian Lin 已提交
97
    },
Y
Yu Cao 已提交
98
];