Interface: FloorUpdateOptions
Options for floor update operations
Properties
onComplete()?
optional onComplete: () => void;Callback function executed when the floor update completes Called after all floor filters and markers have been updated
Returns
void
Example
map.updateFloor("floor-1", {
onComplete: () => {
console.log("Floor update completed")
},
})Last updated on