-
Notifications
You must be signed in to change notification settings - Fork 313
Upgrading from v0.40.x to v1.0.x
Mapbox Navigation SDK for iOS v1.0.0 is the first major version of this SDK since the project started in 2016. To upgrade, follow the installation instructions. Note the new installation steps, including creating a secret Mapbox access token and adding it to a .netrc file.
Version 1.0.0 includes numerous important changes to the public APIs of the MapboxNavigation and MapboxCoreNavigation frameworks as well as their dependencies. There are several backwards-incompatible changes to be aware of as you upgrade, which are discussed below and divided by framework so that you can upgrade different portions of your application at different times.
- Minimum Carthage version required to install the SDK (if using Carthage): 0.35
- Minimum Xcode version required to build the SDK: 11.4.1
- Minimum iOS deployment target: 10.0
-
CoordinateBounds
class was replaced byBoundingBox
. -
Polyline
is replaced withLineString
. - Review existing
Polyline.closestCoordinate(to:)
and otherLineString.IndexedCoordinate
usage as its.distance
property now reflects it's description. Previously,Polyline.closestCoordinate(to:)
showed distance between provided coordinate and the closestPolyline
point. Now, it shows distance fromPolyline
's first point, as stated in the doc.
Number of entities was renamed or replaced:
-
Tracepoint.alternateCount
renamed toTracepoint.countOfAlternatives
. -
MBDefaultWalkingSpeed
replaced byCLLocationSpeed.normalWalking
-
MBMinimumWalkingSpeed
replaced byCLLocationSpeed.minimumWalking
-
MBMaximumWalkingSpeed
replaced byCLLocationSpeed.maximumWalking
-
Route.coordinates
replaced byRoute.shape
-
RouteStep.coordinates
replaced byRouteStep.shape
-
Route.coordinateCount
andRouteStep.coordinateCount
properties have been removed, useLineString.coordinates
instead.
Other changes:
-
TransportType.none
,ManeuverType.none
, andManeuverDirection.none
are removed. To handle those cases, addcatch
ing decoding error. - Removed the
Lane
class in favor of storing an array ofLaneIndications
directly in theIntersection.approachLanes property
. - Removed the
ComponentRepresentable
protocol,VisualInstructionComponent
class, andLaneIndicationComponent
class in favor of a VisualInstruction.Component enumeration that contains a VisualInstruction.Component.TextRepresentation and/or VisualInstruction.Component.ImageRepresentation, depending on the type of component. - The
RouteCompletionHandler
andMatchCompletionHandler
closures’error
argument is now aDirectionsError
instead of anNSError
. Update callbacks accordingly. - Classes such as
Route
,Match
, andRouteStep
conform to the Codable protocol. If you had you own implementation - remove it.
Symbols renamed or replaced:
- Removed
NavigationMapViewDelegate.navigationMapView(_:routeStyleLayerWithIdentifier:source:)
,NavigationMapViewDelegate.navigationMapView(_:routeCasingStyleLayerWithIdentifier:source:)
in favor of four new delegate methods to customize the route styling. - Removed the
NavigationViewControllerDelegate.navigationViewController(_:imageFor:)
andNavigationViewControllerDelegate.navigationViewController(_:viewFor:)
methods in favor ofMGLMapViewDelegate.mapView(_:imageFor:)
andMGLMapViewDelegate.mapView(_:viewFor:)
, respectively. - Deprecated
NavigationMapView.showRoutes(_:, legIndex:)
andNavigationMapView.showWaypoints(_:, legIndex:)
methods. UseNavigationMapView.show(_:, legIndex:)
andNavigationMapView.showWaypoints(on:, legIndex:)
instead.
Other changes:
- Updated
FeedbackType
enum to reflect new top level feedback categories and introduced newFeedbackSubTypes
to support a more granular feedback mechanism. - Any classes, methods, or properties that were deprecated in v0.40.0 are no longer available. See your project’s build errors for details about replacements.
If you have any questions, please contact Mapbox’s support team.