Interface: ZoomOptions
Options for zoom level operations
Properties
onComplete()?
optional onComplete: () => void;Callback function executed when the zoom change completes
Returns
void
Example
map.setMinZoom(10, {
onComplete: () => {
console.log("Min zoom set")
},
})Last updated on