Hey Damian, tried setting openseadragon center panel options like this and it seems that it is invalidating my manifest (getting a message of "unable to load manifest" with a manifest that otherwise works fine)
Any ideas for a fix for this?
const uv = UV.init("uv", data);
uv.on("configure", function ({ config, cb }) {
config.modules.centerPanel.options = {
usePdfJs: true,
};
config.modules.openSeadragonCenterPanel.options = {
defaultZoomLevel: 0,
}
config.modules.footerPanel.options = {
downloadEnabled: false,
embedEnabled: false,
fullscreenEnabled: false,
moreInfoEnabled: false,
shareEnabled: false,
};
cb({
options: {
footerPanelEnabled: false,
leftPanelEnabled: true,
rightPanelEnabled: false,
headerPanelEnabled: true,
},
pdfHeaderPanel: {
options: {
centerOptionsEnabled: false,
},
},
});
});