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

Updated MapLibre Native dependency to ios-v6.9.0 #100

Closed
wants to merge 2 commits into from
Closed
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
@@ -1,6 +1,7 @@
# Changes to the Mapbox Navigation SDK for iOS

## Unreleased
* Updated MapLibre Native dependency to ios-v6.9.0 (https://github.com/maplibre/maplibre-native/releases/tag/ios-v6.9.0).
* Start & Stop Navigation in existing Map
- Removed: `NavigationViewController(for route: Route, dayStyle: Style, routeController: RouteController? = nil, locationManager: NavigationLocationManager? = nil, voiceController: RouteVoiceController? = nil)` use `NavigationViewController(dayStyleURL: URL, nightStyleURL: URL? = nil,directions: Directions = .shared, voiceController: RouteVoiceController = RouteVoiceController())` followed by `startNavigation(with route: Route, animated: Bool)` instead.
- To simulate a route, pass a `SimulatedLocationManager` to `startNavigation()` function:
Expand Down
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/maplibre/maplibre-gl-native-distribution.git",
"state" : {
"revision" : "3df876f8f2c6c591b0f66a29b3e216020afc885c",
"version" : "6.0.0"
"revision" : "93cb32c95b48f62edb27c75792038849cdfdaa35",
"version" : "6.9.0"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let package = Package(
dependencies: [
.package(url: "https://github.com/flitsmeister/mapbox-directions-swift", exact: "0.23.3"),
.package(url: "https://github.com/mapbox/turf-swift.git", from: "2.8.0"),
.package(url: "https://github.com/maplibre/maplibre-gl-native-distribution.git", from: "6.0.0"),
.package(url: "https://github.com/maplibre/maplibre-gl-native-distribution.git", from: "6.9.0"),
.package(url: "https://github.com/ceeK/Solar.git", exact: "3.0.1"),
.package(url: "https://github.com/nicklockwood/SwiftFormat.git", from: "0.53.6")
],
Expand Down
Loading