fixed navigator setvisible️

Signed-off-by: Rahul Chaudhari_ <rahulgc545@gmail.com>
This commit is contained in:
Rahul Chaudhari_ 2024-12-22 14:04:09 +05:30
parent 56d0d982da
commit 2776e3f854
3 changed files with 717 additions and 604 deletions

42
index.html Normal file
View file

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OpenSeadragon Navigator Test</title>
<script src="build/openseadragon/openseadragon.js"></script>
<style>
#viewer {
width: 800px;
height: 600px;
border: 1px solid black;
}
</style>
</head>
<body>
<div id="viewer"></div>
<button onclick="showNavigator()">Show Navigator</button>
<button onclick="hideNavigator()">Hide Navigator</button>
<script>
// Initialize the viewer
const viewer = OpenSeadragon({
id: "viewer",
tileSources:
"https://openseadragon.github.io/example-images/highsmith/highsmith.dzi",
showNavigator: true, // Enable the navigator
});
// Functions to test setVisible
function showNavigator() {
viewer.navigator.setVisible(true);
console.log("Navigator set to visible");
}
function hideNavigator() {
viewer.navigator.setVisible(false);
console.log("Navigator set to hidden");
}
</script>
</body>
</html>

12
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "openseadragon",
"version": "5.0.0",
"version": "5.0.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "openseadragon",
"version": "5.0.0",
"version": "5.0.1",
"license": "BSD-3-Clause",
"devDependencies": {
"eslint-plugin-compat": "^4.1.2",
@ -668,9 +668,9 @@
}
},
"node_modules/caniuse-lite": {
"version": "1.0.30001636",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001636.tgz",
"integrity": "sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==",
"version": "1.0.30001690",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001690.tgz",
"integrity": "sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==",
"dev": true,
"funding": [
{
@ -5217,4 +5217,4 @@
}
}
}
}
}

File diff suppressed because it is too large Load diff