Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
fix(visualization): display traffic reg elem id (#210)
Browse files Browse the repository at this point in the history
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
  • Loading branch information
soblin authored Oct 20, 2023
1 parent 36b3825 commit c3a1a19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmp/lanelet2_extension/lib/visualization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ visualization_msgs::msg::MarkerArray visualization::generateTrafficLightIdMaker(
marker.color = c;
marker.scale.z = scale;
marker.frame_locked = false;
marker.text = std::to_string(ls.id());
marker.text = std::to_string(tl->id());
tl_id_marker_array.markers.push_back(marker);
}
}
Expand Down

0 comments on commit c3a1a19

Please sign in to comment.