Skip to content
Snippets Groups Projects
Commit 011a8465 authored by Matthew Hansen's avatar Matthew Hansen Committed by Matt Hansen
Browse files

Use LoadMap.srv from common interfaces

parent 810bcccd
No related branches found
No related tags found
No related merge requests found
# Type definitions
uint8 TYPE_FILE=0
uint8 TYPE_URL=1
# Type of map resource
uint8 type
# ID of map resource
string map_id
# URL of map resource
# Can be an absolute path to a file: file:///path/to/maps/floor1.yaml
# Or, relative to a ROS package: package://my_ros_package/maps/floor2.yaml
string map_url
---
# Result code defintions
uint8 RESULT_SUCCESS=0
uint8 RESULT_INVALID_TYPE=1
uint8 RESULT_MAP_ID_DOES_NOT_EXIST=2
uint8 RESULT_MAP_DOES_NOT_EXIST=1
uint8 RESULT_INVALID_MAP_DATA=2
uint8 RESULT_INVALID_MAP_METADATA=3
uint8 RESULT_INVALID_MAP_DATA=4
uint8 RESULT_UNDEFINED_FAILURE=255
# Returned map is only valid if result equals RESULT_SUCCESS
......
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