From 4fbcfd1c102cbbd4386e46eb545468cced1b82b5 Mon Sep 17 00:00:00 2001 From: Patrick Kladek Date: Fri, 6 Sep 2024 15:06:02 +0200 Subject: [PATCH 1/2] hide lanesView on navigation start --- MapboxNavigation/NavigationView.swift | 2 -- 1 file changed, 2 deletions(-) diff --git a/MapboxNavigation/NavigationView.swift b/MapboxNavigation/NavigationView.swift index 310ab90e..d64f4ae3 100644 --- a/MapboxNavigation/NavigationView.swift +++ b/MapboxNavigation/NavigationView.swift @@ -180,7 +180,6 @@ open class NavigationView: UIView { func showUI(animated: Bool = true) { let views: [UIView] = [ self.instructionsBannerContentView, - self.lanesView, self.bottomBannerContentView, self.floatingStackView ] @@ -199,7 +198,6 @@ open class NavigationView: UIView { func hideUI(animated: Bool = true) { let views: [UIView] = [ self.instructionsBannerContentView, - self.lanesView, self.bottomBannerContentView, self.floatingStackView, self.resumeButton From 23ac720b00ec8808b51ef83ae5f416963e4e1254 Mon Sep 17 00:00:00 2001 From: Patrick Kladek Date: Fri, 6 Sep 2024 15:07:54 +0200 Subject: [PATCH 2/2] add changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60d01723..ffd3b630 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ * Fix: Respond to changes in dynamic type without having to restart the app in https://github.com/maplibre/maplibre-navigation-ios/pull/65 * Fix: crash in EndOfRouteViewController and restore its presentation by in https://github.com/maplibre/maplibre-navigation-ios/pull/71 * Fix: retain cycles in RouteMapViewController +* Fix: hide lanesView on navigation start ## 3.0.0 (Jun 15, 2024) * The `speak` method in `RouteVoiceController` can be used without a given `RouteProgress` or the `RouteProgress` can explicitly ignored so that it will not be added to the voice instruction.