Hub Location
const onHubLocationChange = (value: Placemark, timestamp?: Date) => {
console.log(value, timestamp);
};
COBI.app.hubLocation.read(onHubLocationChange); // Instantly get the current value
COBI.app.hubLocation.subscribe(onHubLocationChange);
COBI.app.hubLocation.unsubscribe(onHubLocationChange);const onHubLocationChange = (value, timestamp) => {
console.log(value, timestamp);
};
COBI.app.hubLocation.read(onHubLocationChange); // Instantly get the current value
COBI.app.hubLocation.subscribe(onHubLocationChange);
COBI.app.hubLocation.unsubscribe(onHubLocationChange);Last updated