Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

syntax = "proto2"; | |
package apollo.routing; | |
import "modules/routing/proto/routing.proto"; | |
message Landmark { | |
optional string name = 1; | |
repeated LaneWaypoint waypoint = 2; | |
optional string parking_space_id = 3; | |
} | |
message POI { | |
repeated Landmark landmark = 1; | |
} |