Events
Geoflow fires the following events on the window object and can be accessed anywhere on the page, allowing you to add custom functionality.
Event Name
Event Description
Examples
window.addEventListener('geoflowReady', function (e) {
console.log('Geoflow Is Ready!', e.detail);
});
window.addEventListener('geoflowError', function (e) {
console.log('Geoflow Error!', e.detail);
});
window.addEventListener('geoflowUpdated', function (e) {
console.log('Geoflow Was Updated!', e.detail);
});
window.addEventListener('geoflowExtComplete', function (e) {
console.log('This Script Extension Finished Running:', e.detail);
});Last updated
