Track látszik a terepi bejárás térképen is, gps log jelvesztéskor.

This commit is contained in:
2026-07-02 15:49:23 +02:00
parent e126f340c6
commit f130f583ba
6 changed files with 116 additions and 16 deletions
@@ -86,7 +86,8 @@ class MapSurveyView extends GetView<MapSurveyController> {
const ImportedLayerOverlay(),
// Track polyline
Obx(() {
final inTrackMode = controller.mode.value == MapSurveyMode.track;
final inTrackMode = controller.mode.value == MapSurveyMode.track ||
controller.mode.value == MapSurveyMode.fieldWalk;
if (!inTrackMode) return const SizedBox.shrink();
final ids = TrackingController.to.overlayTrackIds;
if (ids.isEmpty) return const SizedBox.shrink();