I want to hide toolbar,but I can not do that by setting : OpenSeadragon({...,toolbar:false,...}) what should I do?
a easy way to hide it:(typescript)
const toolbar : any= document.getElementsByClassName("openseadragon-container")[0].childNodes[1];
toolbar.style.display = "none";
Out of curiosity, in what documentation did you find toolbar: false? Anyway, it's showNavigationControl: false.
thank you!
I believe:
viewer.setControlsEnabled(false)
should let you do it programatically.
Most helpful comment
I believe:
viewer.setControlsEnabled(false)should let you do it programatically.