Ascent

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);

Last updated