Apollo 10.0
自动驾驶开放平台
map_area.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.hdmap;
4
7
8message Area {
9 enum Type {
10 Driveable = 1;
11 UnDriveable = 2;
12 Custom1 = 3;
13 Custom2 = 4;
14 Custom3 = 5;
15 };
16
17 required Id id = 1;
18 optional Type type = 2;
19 required Polygon polygon = 3;
20 repeated Id overlap_id = 4;
21 optional string name = 5;
22}
syntax
Definition map_area.proto:1