photo-sphere-viewer
Version:
A JavaScript library to display Photo Sphere panoramas
21 lines (16 loc) • 462 B
JavaScript
import { AbstractMoveButton, getOrientedArrow } from './AbstractMoveButton';
/**
* @summary Navigation bar move right button class
* @extends PSV.buttons.AbstractMoveButton
* @memberof PSV.buttons
*/
export class MoveRightButton extends AbstractMoveButton {
static id = 'moveRight';
static icon = getOrientedArrow('right');
/**
* @param {PSV.components.Navbar} navbar
*/
constructor(navbar) {
super(navbar, { longitude: false });
}
}