MenuData.js 3.1 KB
Newer Older
Y
Yu Cao 已提交
1
export default [
V
Vivian Lin 已提交
2 3 4 5 6 7 8 9
    {
        id: 'camera',
        title: 'Point of View',
        type: 'radio',
        data: {
            1: 'Default',
            2: 'Near',
            3: 'Overhead',
K
kiboliu 已提交
10 11
            4: 'Map',
            5: 'CameraView',
V
vlin17 已提交
12 13
        },
        supportInOfflineView: true,
V
Vivian Lin 已提交
14
    },
Y
Yu Cao 已提交
15 16 17 18 19
    {
        id: 'perception',
        title: 'Perception',
        type: 'checkbox',
        data: {
U
unacao 已提交
20
            perceptionPointCloud: 'Point Cloud',
Y
Yu Cao 已提交
21 22 23 24
            perceptionVehicle: 'Vehicle',
            perceptionPedestrian: 'Pedestrian',
            perceptionBicycle: 'Bicycle',
            perceptionUnknownMovable: 'Unknown Movable',
25
            perceptionUnknownUnmovable: 'Unknown Stationary',
Y
Yu Cao 已提交
26
            perceptionUnknown: 'Unknown',
U
unacao 已提交
27
            perceptionCipv: 'Closest In-Path Vehicle',
28 29
            perceptionVelocity: 'Velocity',
            perceptionHeading: 'Heading',
30
            perceptionId: 'Id',
31
            perceptionObstacleInfo: 'Distance and Speed',
32
            perceptionLaneMarker: 'Lane Marker',
33 34 35
            perceptionLidarSensor: 'Lidar Sensor',
            perceptionRadarSensor: 'Radar Sensor',
            perceptionCameraSensor: 'Camera Sensor',
V
vlin17 已提交
36 37
        },
        supportInOfflineView: true,
Y
Yu Cao 已提交
38 39 40 41 42 43
    }, {
        id: 'prediction',
        title: 'Prediction',
        type: 'checkbox',
        data: {
            predictionMajor: 'Major Prediction Line',
44
            predictionMinor: 'Minor Prediction Line',
V
vlin17 已提交
45
            predictionGaussianInfo: 'Gaussian Info',
46
            predictionPriority: 'Priority'
V
vlin17 已提交
47 48
        },
        supportInOfflineView: true,
Y
Yu Cao 已提交
49 50 51 52 53
    }, {
        id: 'routing',
        title: 'Routing',
        type: 'checkbox',
        data: {
U
unacao 已提交
54
            routing: 'Routing Line'
V
vlin17 已提交
55 56
        },
        supportInOfflineView: true,
Y
Yu Cao 已提交
57 58 59 60 61 62 63
    }, {
        id: 'decision',
        title: 'Decision',
        type: 'checkbox',
        data: {
            decisionMain: 'Main Decision',
            decisionObstacle: 'Obstacle Decision',
V
vlin17 已提交
64 65
        },
        supportInOfflineView: true,
Y
Yu Cao 已提交
66 67 68 69 70
    }, {
        id: 'planning',
        title: 'Planning',
        type: 'checkbox',
        data: {
71
            planningCar: 'Planning Car',
72
            planningTrajectory: 'Planning Trajectory',
K
kiboliu 已提交
73
            rssInfo: 'RSS Info'
V
vlin17 已提交
74 75
        },
        supportInOfflineView: true,
V
vlin17 已提交
76 77 78 79 80 81 82
    }, {
        id: 'position',
        title: 'Position',
        type: 'checkbox',
        data: {
            positionLocalization: 'Localization',
            positionGps: 'GPS',
83
            positionShadow: 'Shadow',
V
vlin17 已提交
84
        },
85
        supportInOfflineView: true,
86 87 88 89 90 91 92 93
    }, {
        id: 'map',
        title: 'Map',
        type: 'checkbox',
        data: {
            mapCrosswalk: 'Crosswalk',
            mapClearArea: 'Clear Area',
            mapJunction: 'Junction',
94
            mapPncJunction: 'PNC Junction',
95 96 97 98
            mapLane: 'Lane',
            mapRoad: 'Road',
            mapSignal: 'Signal',
            mapStopSign: 'Stop Sign',
V
Vivian Lin 已提交
99
            mapYield: 'Yield Sign',
100 101
            mapSpeedBump: 'Speed Bump',
            mapParkingSpace: 'Parking Space',
V
Vivian Lin 已提交
102
            mapLaneId: 'Lane Id'
V
vlin17 已提交
103 104
        },
        supportInOfflineView: false,
V
Vivian Lin 已提交
105
    },
Y
Yu Cao 已提交
106
];