Quellcode durchsuchen

Add API method to check if a panorama is loaded.

pull/338/head
Matthew Petroff vor 8 Jahren
Ursprung
Commit
685e89b2e4
1 geänderte Dateien mit 10 neuen und 0 gelöschten Zeilen
  1. +10
    -0
      src/js/pannellum.js

+ 10
- 0
src/js/pannellum.js Datei anzeigen

@@ -2136,6 +2136,16 @@ function escapeHTML(s) {
}

/**
* Checks whether or not a panorama is loaded.
* @memberof Viewer
* @instance
* @returns {boolean} `true` if a panorama is loaded, else `false`
*/
this.isLoaded = function() {
return loaded;
};

/**
* Returns the pitch of the center of the view.
* @memberof Viewer
* @instance


Laden…
Abbrechen
Speichern