download_robot_map_v2
Download robot navigation maps from GS cleaning robots using the V2 API by providing the specific map ID to access detailed mapping information.
Instructions
Downloads a robot map using V2 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"
}