MenuData.js 2.7 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
    }, {
        id: 'prediction',
        title: 'Prediction',
        type: 'checkbox',
        data: {
            predictionMajor: 'Major Prediction Line',
40 41
            predictionMinor: 'Minor Prediction Line',
            predictionPriority: 'Priority'
V
vlin17 已提交
42 43
        },
        supportInOfflineView: true,
Y
Yu Cao 已提交
44 45 46 47 48
    }, {
        id: 'routing',
        title: 'Routing',
        type: 'checkbox',
        data: {
U
unacao 已提交
49
            routing: 'Routing Line'
V
vlin17 已提交
50 51
        },
        supportInOfflineView: true,
Y
Yu Cao 已提交
52 53 54 55 56 57 58
    }, {
        id: 'decision',
        title: 'Decision',
        type: 'checkbox',
        data: {
            decisionMain: 'Main Decision',
            decisionObstacle: 'Obstacle Decision',
V
vlin17 已提交
59 60
        },
        supportInOfflineView: true,
Y
Yu Cao 已提交
61 62 63 64 65
    }, {
        id: 'planning',
        title: 'Planning',
        type: 'checkbox',
        data: {
66
            planningCar: 'Planning Car',
67
            planningTrajectory: 'Planning Trajectory',
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: true,
79 80 81 82 83 84 85 86
    }, {
        id: 'map',
        title: 'Map',
        type: 'checkbox',
        data: {
            mapCrosswalk: 'Crosswalk',
            mapClearArea: 'Clear Area',
            mapJunction: 'Junction',
87
            mapPncJunction: 'PNC Junction',
88 89 90 91
            mapLane: 'Lane',
            mapRoad: 'Road',
            mapSignal: 'Signal',
            mapStopSign: 'Stop Sign',
92 93
            mapSpeedBump: 'Speed Bump',
            mapParkingSpace: 'Parking Space',
V
vlin17 已提交
94 95
        },
        supportInOfflineView: false,
V
Vivian Lin 已提交
96
    },
Y
Yu Cao 已提交
97
];