We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In com.mapbox.navigationcore:ui-maps:3.2.0, the KDocs for MapboxRouteArrowApi have a couple of issues.
com.mapbox.navigationcore:ui-maps:3.2.0
MapboxRouteArrowApi
First, the initial code snippets show withAboveLayerId(), which is deprecated:
withAboveLayerId()
* RouteArrowOptions routeArrowOptions = new RouteArrowOptions.Builder(context) * .withAboveLayerId(RouteLayerConstants.TOP_LEVEL_ROUTE_LINE_LAYER_ID) * .build() * MapboxRouteArrowApi routeArrow = new MapboxRouteArrowApi() * MapboxRouteArrowView routeArrowView = new MapboxRouteArrowView(routeArrowOptions)
* val routeArrowOptions = RouteArrowOptions.Builder(context) * .withAboveLayerId(RouteLayerConstants.TOP_LEVEL_ROUTE_LINE_LAYER_ID) * .build() * val routeArrow = MapboxRouteArrowApi() * val routeArrowView = MapboxRouteArrowView(routeArrowOptions)
Also, the final code snippet shows a updateUpcomingManeuverArrow() that does not exist:
updateUpcomingManeuverArrow()
* override fun onRouteProgressChanged(routeProgress: RouteProgress) { * val updateState = routeArrow.updateUpcomingManeuverArrow(routeProgress) * routeArrowView.render(mapboxMap.getStyle(), updateState)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
com.mapbox.navigationcore:ui-maps:3.2.0
, the KDocs forMapboxRouteArrowApi
have a couple of issues.First, the initial code snippets show
withAboveLayerId()
, which is deprecated:Also, the final code snippet shows a
updateUpcomingManeuverArrow()
that does not exist:The text was updated successfully, but these errors were encountered: