isTrackedPositions property
Check whether position tracking is currently active in the map view.
Returns
- True when tracked position visualization is active, false otherwise.
Also see:
- startTrackPositions — Start improved position tracking visualization.
- stopTrackPositions — Stop the improved position tracking visualization.
- trackedPositions — Get the current tracked positions.
Implementation
bool get isTrackedPositions {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewExtensions',
'isTrackedPositions',
dependencyId: _mapControllerId,
);
return resultString['result'] as bool;
}