SimulationParameters QML Type
Parameters to control how locations are created from a simulated route of travel (Polyline). More...
Import Statement: | import Esri.ArcGISRuntime |
Since: | Esri.ArcGISRuntime 100.8 |
Inherits: |
- List of all members, including inherited members
- SimulationParameters is part of QML Type List.
Properties
- horizontalAccuracy : double
- startTime : date
- velocity : double
- verticalAccuracy : double
Signals
Detailed Description
This object can be provided as an input to the SimulatedLocationDataSource::setLocationsWithPolylineAndParameters method to specify the start time for the first location, travel velocity (meters per second), and horizontal and vertical accuracy of locations.
Property Documentation
horizontalAccuracy : double |
The horizontal accuracy to assign to generated locations.
Default value is 0.0
.
startTime : date |
Returns the Date and time of the first location.
Each subsequent location will increment its timestamp by one second.
velocity : double |
Returns rate of travel, in meters per second.
Default value is 10.0
. Note that very small values for velocity may greatly increase the number of locations created.
verticalAccuracy : double |
Returns the vertical accuracy assigned to generated locations.
Default value is 0.0
.
Signal Documentation
horizontalAccuracyChanged() |
Emitted when the horizontalAccuracy property changes.
Note: The corresponding handler is onHorizontalAccuracyChanged
.
startTimeChanged() |
Emitted when the startTime property changes.
Note: The corresponding handler is onStartTimeChanged
.
velocityChanged() |
Emitted when the velocity property changes.
Note: The corresponding handler is onVelocityChanged
.
verticalAccuracyChanged() |
Emitted when the verticalAccuracy property changes.
Note: The corresponding handler is onVerticalAccuracyChanged
.