Route
const onRouteChange = (value: Route, timestamp?: Date) => {
console.log(value, timestamp);
};
COBI.navigationService.route.subscribe(onRouteChange);
COBI.navigationService.route.unsubscribe(onRouteChange);const onRouteChange = (value, timestamp) => {
console.log(value, timestamp);
};
COBI.navigationService.route.subscribe(onRouteChange);
COBI.navigationService.route.unsubscribe(onRouteChange);Last updated