Listeners
Retrieving the Last Location
GizoSdk.onUpdateLocationListener((event) => {
const { latitude, longitude, timestamp } = event.location;
console.log(
Latitude: ${latitude}, Longitude: ${longitude}, Timestamp: ${timestamp},
);
});Start of a Recording
GizoSdk.onStartRecordingListener(() => {
console.log("Recording started");
});End of a Recording
Start of Upload to GIZO Platform
End of Upload to GIZO Platform
Detection of a Crash
End of Upload of a Crash to the GIZO Platform
Last updated