startPosition property
Coordinates
get
startPosition
Retrieves the first recorded GPS position.
If the recorded log contains GPS data, this method returns the first valid sensor position.
If no GPS data is recorded, it returns an invalid coordinate (0, 0)
.
Returns
- The first sensor recorded position or
(0, 0)
if no GPS data is available.
Implementation
Coordinates get startPosition {
final OperationResult resultString = objectMethod(
pointerId,
'LogMetadata',
'getStartPosition',
);
return Coordinates.fromJson(resultString['result']);
}