Exemple #1
0
 public GetMapResult(OccupancyGrid map)
 {
     this.map = map;
 }
Exemple #2
0
 public SetMapRequest(OccupancyGrid map, PoseWithCovarianceStamped initial_pose)
 {
     this.map          = map;
     this.initial_pose = initial_pose;
 }
Exemple #3
0
 public GetMapResult()
 {
     this.map = new OccupancyGrid();
 }
Exemple #4
0
 //导航坐标消息类型在Geometry目录下
 private void MapSubscriptionHandler(nav_msgs.OccupancyGrid message)
 {
     //MessageBox.Show(message.header.ToString());
     OnMessageReceived.Set();
 }
Exemple #5
0
 public SetMapRequest()
 {
     this.map          = new OccupancyGrid();
     this.initial_pose = new PoseWithCovarianceStamped();
 }
Exemple #6
0
 public GetMapResponse(OccupancyGrid map)
 {
     this.map = map;
 }
Exemple #7
0
 public GetMapResponse()
 {
     this.map = new OccupancyGrid();
 }