description |
---|
Appetize supports simulating device location for running and testing location-based applications easily. |
To specify the device location, include the location
query parameter in your app or embed URL, followed by the latitude and longitude values e.g.
&location=-33.924434,18.418391
See Query Params Reference for more information.
Set the location of the device via our JavaScript SDK
Specify the location by passing in a number array in format [latitude, longitude]
e.g.
await client.setConfig({
location: [-33.924434, 18.418391],
...
})
See Configuration for more information.
Specify the location by passing in the number parameters latitude
and longitude
e.g.
await setLocation(-33.924434, 18.418391)
See the API Reference for more information.