Callbacks
Geoflow triggers the following callbacks and can be accessed anywhere on the page, allowing you to add custom functionality.
Callback Name
Callback Description
Examples
function Geoflow_Ready(geoflow) {
console.log('Geoflow Is Ready!', geoflow);
}
function Geoflow_Error(error) {
console.error('Geoflow Error!', error);
}
function Geoflow_Updated(geoflow) {
console.log('Geoflow Was Updated!', geoflow);
}
function Geoflow_ExtComplete(extName) {
console.log('This Script Extension Finished Running:', extName);
}Last updated
