How to send navigation goal via waypoints in move_base?
I want to send robot using move_base to point B from point A but I want that to be done via way-points C and D. Note : I don't want to call move_base/goal three time that is for A to C, C to D and then D to B. I want the path to be generated by global planner via the way points.
To my knowledge move_base doesn't support multiple goals. But you can write a node that publishes to goal, and in there you send waypoints one-by-one. Do a check when current goal is reached and publish a new goal.