@@ -414,6 +414,33 @@ message BosdynNavigateToAnchor {
414414
415415}
416416
417+ // Tell the robot to navigate to a pose in the seed frame
418+ message BosdynNavigateToAnchor {
419+ // Name of the service to use.
420+ string service_name = 1 ;
421+ // Host machine the service is running on.
422+ string host = 2 ;
423+
424+ // Desired goal pose in seed frame.
425+ bosdyn.api.SE3Pose seed_tform_goal = 3 ;
426+
427+ // Preferences on how to pick the route.
428+ bosdyn.api.graph_nav.RouteGenParams route_gen_params = 4 ;
429+ // Parameters that define how to traverse and end the route.
430+ bosdyn.api.graph_nav.TravelParams travel_params = 5 ;
431+
432+ // If provided, this will write the last NavigationFeedbackResponse message
433+ // to a blackboard variable with this name.
434+ string navigation_feedback_response_blackboard_key = 6 ;
435+ // If provided, this will write the last NavigateToResponse message to
436+ // a blackboard variable with this name.
437+ string navigate_to_anchor_response_blackboard_key = 7 ;
438+
439+ // If provided, parameters from this request will be merged with the other parameters defined in
440+ // the node and be used in the NavigateToAnchor RPC.
441+ string navigate_to_anchor_request_blackboard_key = 8 ;
442+ }
443+
417444// Tell the robot to navigate a route.
418445message BosdynNavigateRoute {
419446 // Name of the service to use.
0 commit comments