create

fun create(onlineRoutePlanner: RoutePlanner, offlineRoutePlanner: RoutePlanner, configuration: RouteReplannerConfiguration = RouteReplannerConfiguration()): RouteReplanner

Creates a hybrid implementation of the RouteReplanner, designed to utilize both online and offline routing capabilities for route replanning during a navigation session.

val hybridRouteReplanner = HybridRouteReplannerFactory.create(onlineRoutePlanner, offlineRoutePlanner)

Important: This is a Public Preview API. It may be changed or removed at any time.

Parameters

onlineRoutePlanner

RouteReplanner used to execute online routing requests.

offlineRoutePlanner

RouteReplanner used to execute offline routing requests.

configuration

RouteReplannerConfiguration used for route replanning.