Skip to content
Snippets Groups Projects
Commit e0ca12ac authored by mlherd's avatar mlherd
Browse files

used arrow markers for waypoints instead of circles

parent ea42a7d6
No related branches found
No related tags found
No related merge requests found
......@@ -515,11 +515,11 @@ Nav2Panel::updateWpNavigationMarkers()
visualization_msgs::msg::Marker marker;
marker.header = acummulated_poses_[i].header;
marker.id = i * 2;
marker.type = visualization_msgs::msg::Marker::SPHERE;
marker.type = visualization_msgs::msg::Marker::ARROW;
marker.action = visualization_msgs::msg::Marker::ADD;
marker.pose = acummulated_poses_[i].pose;
marker.scale.x = 0.1;
marker.scale.y = 0.1;
marker.scale.x = 0.3;
marker.scale.y = 0.05;
marker.scale.z = 0.1;
marker.color.r = 0;
marker.color.g = 255;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment