Image viewer is referring to icons in https://openseadragon.github.io/openseadragon/images/home_hover.png for menu icons it should refer to the local icons instead.
You should probably refer to the specific code where you found that.
You can use the "prefixUrl" parameter to set the path to your local icons folder (see https://openseadragon.github.io/docs/OpenSeadragon.html#.Options)
Something like:
var viewer = OpenSeadragon({
// ...
prefixUrl: "/assets/images/",
// ...
});
Im not sure about the file. But I found it in SRC attribute of img tag of the icons in image viewer.
@Rafi993 Can you share viewer construction code you're using (e.g. viewer = OpenSeadragon()?
Hello there. Thanks for this awesome library. I don't face this issue anymore. I'm closing this issue for now. please feel free to open it back if needed.
Most helpful comment
You should probably refer to the specific code where you found that.
You can use the "prefixUrl" parameter to set the path to your local icons folder (see https://openseadragon.github.io/docs/OpenSeadragon.html#.Options)
Something like: