mirror of
https://github.com/6-robot/waterplus_map_tools.git
synced 2025-09-15 12:59:09 +08:00
17 lines
678 B
XML
17 lines
678 B
XML
<launch>
|
|
|
|
<!-- Map server -->
|
|
<node name="map_server" pkg="map_server" type="map_server" args="$(find wpb_home_tutorials)/maps/map.yaml"/>
|
|
|
|
<!-- RViz and TF -->
|
|
<arg name="rvizconfig" default="$(find waterplus_map_tools)/rviz/addwaypoint.rviz" />
|
|
<node name="rviz" pkg="rviz" type="rviz" args="-d $(arg rvizconfig)" required="true" />
|
|
<node pkg="tf" type="static_transform_publisher" name="base_to_laser_broadcaster" args="0 0 0 0 0 0 /map /base_link 100"/>
|
|
|
|
<!-- Map tools -->
|
|
<node pkg="waterplus_map_tools" type="wp_manager" name="wp_manager" output="screen">
|
|
<param name="load" type="string" value="/home/robot/waypoints.xml"/>
|
|
</node>
|
|
|
|
</launch>
|