The total aggregated ascend - in meters.
const onAscentChange = (value: number, timestamp?: Date) => { console.log(value, timestamp); }; COBI.tourService.ascent.subscribe(onAscentChange); COBI.tourService.ascent.unsubscribe(onAscentChange);
const onAscentChange = (value, timestamp) => { console.log(value, timestamp); }; COBI.tourService.ascent.subscribe(onAscentChange); COBI.tourService.ascent.unsubscribe(onAscentChange);
Last updated 2 years ago