Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hide LanesView on navigation start #96

Merged
merged 2 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading