fixed navigator setvisible️ (fixed indentation)

Signed-off-by: Rahul Chaudhari_ <rahulgc545@gmail.com>
This commit is contained in:
Rahul Chaudhari_ 2025-01-03 11:32:51 +05:30
parent 56d0d982da
commit de277a7b42

View file

@ -324,6 +324,37 @@ $.extend( $.Navigator.prototype, $.EventSource.prototype, $.Viewer.prototype, /*
this.updateSize();
},
/**
* Controls the visibility of the navigator element.
* This method hides or shows the entire navigator, including its background and borders.
* @function
* @param {Boolean} visible - True to show the navigator, false to hide it.
*/
setVisible: function (visible) {
if (this.element) {
// Only proceed if there's a valid element to control
if (visible) {
// Show the navigator element
this.element.style.display = "block";
if (this.viewport) {
// Update the viewport and ensure constraints are applied
this.viewport.goHome(true);
this.world.update();
this.world.draw();
this.update(this.viewer.viewport);
}
} else {
// Hide the navigator element
this.element.style.display = "none";
}
} else {
// Log a warning if the navigator element is missing
$.console.warn(
"Navigator element not found. Unable to set visibility."
);
}
},
/**
* Explicitly sets the height of the navigator, in web coordinates. Disables automatic resizing.
* @param {Number|String} height - the new height, either a number of pixels or a CSS string, such as "100%"