From 9e831643e787fda6486cfa78bb060058bf71463f Mon Sep 17 00:00:00 2001 From: Ryan Brown Date: Wed, 15 Jul 2026 21:48:40 +0000 Subject: [PATCH] Update distance filter to be smaller. Should allow for faster map to update position faster and track current location better. --- lib/widgets/map/gps_controller.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widgets/map/gps_controller.dart b/lib/widgets/map/gps_controller.dart index cdc67f7..5c244a1 100644 --- a/lib/widgets/map/gps_controller.dart +++ b/lib/widgets/map/gps_controller.dart @@ -145,7 +145,7 @@ class GpsController { /// Start the GPS position stream void _startPositionStream() { final followMeMode = _getCurrentFollowMeMode?.call() ?? FollowMeMode.off; - final distanceFilter = followMeMode == FollowMeMode.off ? 5 : 1; // 5m normal, 1m follow-me + final distanceFilter = followMeMode == FollowMeMode.off ? 1 : 0; // 1m normal, 0m follow-me debugPrint('[GpsController] Starting GPS position stream (${distanceFilter}m filter)');