mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 13:53:31 +03:00
fixed navigator setvisible️
Signed-off-by: Rahul Chaudhari_ <rahulgc545@gmail.com>
This commit is contained in:
parent
56d0d982da
commit
2776e3f854
3 changed files with 717 additions and 604 deletions
42
index.html
Normal file
42
index.html
Normal 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
12
package-lock.json
generated
|
@ -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 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
1267
src/navigator.js
1267
src/navigator.js
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue