Skip to content

Commit

Permalink
Hide LanesView on navigation start (#96)
Browse files Browse the repository at this point in the history
* hide lanesView on navigation start

* add changelog
  • Loading branch information
Patrick-Kladek authored Sep 6, 2024
1 parent 96689db commit 8c0811f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 0 additions & 2 deletions MapboxNavigation/NavigationView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,6 @@ open class NavigationView: UIView {
func showUI(animated: Bool = true) {
let views: [UIView] = [
self.instructionsBannerContentView,
self.lanesView,
self.bottomBannerContentView,
self.floatingStackView
]
Expand All @@ -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
Expand Down

0 comments on commit 8c0811f

Please sign in to comment.