Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Plugin to add lens flares to a Photo Sphere Viewer (Library: PhotoSphereViewer) by mistic100

License

NotificationsYou must be signed in to change notification settings

Elius94/psv-lens-flare-plugin

Repository files navigation

Plugin to add lens flares to a Photo Sphere Viewer (Library:PhotoSphereViewer) bymistic100

lensflare

NPMJavaScript Style Guide

Installation

NPM

npm install photo-sphere-viewer-lensflare-plugin

Yarn

yarn add photo-sphere-viewer-lensflare-plugin

Usage

HTML

<scriptsrc="https://cdn.jsdelivr.net/npm/photo-sphere-viewer-lensflare-plugin/dist/index.min.js"></script>

JavaScript

import{LensflarePlugin}from'photo-sphere-viewer-lensflare-plugin';
constviewer=newPhotoSphereViewer.Viewer({container:document.querySelector('#viewer'),panorama:'pano.jpg',plugins:[[LensflarePlugin,{lensflares:[{id:'sun',position:{yaw:'145deg',pitch:'2deg'},type:0,}]}]]});

Options

OptionTypeDefaultDescription
lensflaresArray[]Array of lens flares

Lens Flare Options

OptionTypeDefaultDescription
idString''ID of the lens flare
positionObject{ yaw: '0deg', pitch: '0deg' }Position of the lens flare
typeNumber0Type of the lens flare (available: 0)
colorHSL{ h: 0.08, s: 0.2, l: 0.5 }Color of the lens flare

Methods

To call methods you need to get the plugin instance.

constlensflaresPlugin=viewer.getPlugin(LensflarePlugin);

and then you can call the methods.

toggleAllLensflares

Toggle all lens flares.

lensflaresPlugin.toggleAllLensflares();

showAllLensflares

Show all lens flares.

lensflaresPlugin.showAllLensflares();

hideAllLensflares

Hide all lens flares.

lensflaresPlugin.hideAllLensflares();

getNbLensflares

Get the number of lens flares.

constnb=lensflaresPlugin.getNbLensflares();

getLensflares

Get all the lens flares.

constlensflares:LensflareObject[]=lensflaresPlugin.getLensflares();

getLensflare

Get a lens flare.

constlensflare:LensflareObject=lensflaresPlugin.getLensflare('sun');

addLensflare

Add a lens flare.

lensflaresPlugin.addLensflare({id:'sun',position:{yaw:'145deg',pitch:'2deg'},type:0,});

updateLensflare

Update a lens flare.

lensflaresPlugin.updateLensflare({id:'sun',position:{yaw:'145deg',pitch:'2deg'},type:0,});

removeLensflare

Remove a lens flare.

lensflaresPlugin.removeLensflare('sun');

removeLensflares

Remove multiple lens flares.

lensflaresPlugin.removeLensflares(['sun','moon']);

setLensflares

Clear all lens flares and add new ones.

lensflaresPlugin.setLensflares([{id:'sun',position:{yaw:'145deg',pitch:'2deg'},type:0,},{id:'moon',position:{yaw:'30.6deg',pitch:'41.2deg'},type:0,}]);

clearLensflares

Clear all lens flares.

lensflaresPlugin.clearLensflares();

Examples

Run the provided example

npm runtest

Add multiple lens flares

constviewer=newPhotoSphereViewer.Viewer({container:document.querySelector('#viewer'),panorama:'pano.jpg',defaultYaw:20.75,defaultPitch:0.17,plugins:[[PhotoSphereViewerLensflarePlugin,{lensflares:[{id:'sun',position:{yaw:'145deg',pitch:'2deg'},},{id:'moon',position:{yaw:'30.6deg',pitch:'41.2deg'},color:{h:0.6,s:0.5,l:0.2},}]}]]});

Result of the example

multilens

CodeSandbox

Edit photo-sphere-viewer-lensflare-plugin

About

Plugin to add lens flares to a Photo Sphere Viewer (Library: PhotoSphereViewer) by mistic100

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp