Procházet zdrojové kódy

Add API functions to get and set north offset (implements #127).

pull/131/head
Matthew Petroff před 8 roky
rodič
revize
3a78435b30
1 změnil soubory, kde provedl 22 přidání a 0 odebrání
  1. +22
    -0
      src/js/pannellum.js

+ 22
- 0
src/js/pannellum.js Zobrazit soubor

@@ -1833,6 +1833,28 @@ this.setHfovBounds = function(bounds) {
};

/**
* Returns the panorama's north offset.
* @memberof Viewer
* @instance
* @returns {number} North offset in degrees
*/
this.getNorthOffset = function() {
return config.northOffset;
};

/**
* Sets the panorama's north offset.
* @memberof Viewer
* @instance
* @param {number} heading - North offset in degrees
* @returns {Viewer} `this`
*/
this.setNorthOffset = function(heading) {
config.northOffset = Math.max(360, Math.min(0, heading));
return this;
};

/**
* Returns the panorama renderer.
* @memberof Viewer
* @instance


Načítá se…
Zrušit
Uložit