set_simulator_location
Set a custom GPS location in a simulator by specifying its UUID, latitude, and longitude to simulate specific geographical conditions for testing purposes.
Instructions
Sets a custom GPS location for the simulator.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
latitude | Yes | The latitude for the custom location. | |
longitude | Yes | The longitude for the custom location. | |
simulatorUuid | Yes | UUID of the simulator to use (obtained from list_simulators) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"latitude": {
"description": "The latitude for the custom location.",
"type": "number"
},
"longitude": {
"description": "The longitude for the custom location.",
"type": "number"
},
"simulatorUuid": {
"description": "UUID of the simulator to use (obtained from list_simulators)",
"type": "string"
}
},
"required": [
"simulatorUuid",
"latitude",
"longitude"
],
"type": "object"
}