download_robot_map_v1
Download robot navigation maps from GS cleaning robots using the V1 API. Retrieve specific maps by providing the map ID to access robot mapping data for monitoring and control operations.
Instructions
Downloads a robot map using V1 API.
Args:
map_id: The ID of the map to download.
Returns:
A dictionary containing the map download information.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| map_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"map_id": {
"title": "Map Id",
"type": "string"
}
},
"required": [
"map_id"
],
"type": "object"
}