|
@@ -52,6 +52,7 @@ message ControlRequest {
|
|
|
}
|
|
|
|
|
|
message Empty {
|
|
|
+ string id = 1;
|
|
|
}
|
|
|
|
|
|
message MapPoint{
|
|
@@ -60,16 +61,23 @@ message MapPoint{
|
|
|
}
|
|
|
|
|
|
//服务端发送站点信息到小车
|
|
|
-message UploadMapRequest {
|
|
|
- repeated MapPoint mapPoints = 1;
|
|
|
-}
|
|
|
+//message UploadMapRequest {
|
|
|
+// repeated MapPoint mapPoints = 1;
|
|
|
+//}
|
|
|
|
|
|
//小车发送路径所有的位置到服务端
|
|
|
+//message UploadMapReply {
|
|
|
+// repeated MapPoint mapPoints = 1;
|
|
|
+//}
|
|
|
+
|
|
|
message UploadMapReply {
|
|
|
- repeated MapPoint mapPoints = 1;
|
|
|
+ string id = 1;
|
|
|
+ bool isNeedMap = 2;
|
|
|
+ string patrolPathID = 3;
|
|
|
+ repeated MapPoint mapPoints = 4;
|
|
|
}
|
|
|
|
|
|
message CtrlRequest {
|
|
|
string id = 1; // 车辆 SIM 码
|
|
|
CtrlMode modeCMD = 2; //mode change command
|
|
|
-}
|
|
|
+}
|