startPosition property
First recorded GPS coordinate in the log.
Returns the earliest valid Coordinates recorded in the log. If the log
contains no GPS samples, an invalid coordinate (0, 0) is returned.
Returns
- A Coordinates instance representing the starting 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']);
}