This is a forked version of https://www.npmjs.com/package/react-pannellum/
A library show panorama image for react
This library use source from https://pannellum.org/
npm install --save forked-react-pannellum
import React from 'react'
import ReactPannellum, { getConfig } from 'react-pannellum'
class Example extends React.Component {
click() {
console.log(getConfig());
}
render () {
const config = {
autoRotate: -2
}
return (
<div>
<ReactPannellum
sceneId="firstScene"
imageSource="https://pannellum.org/images/alma.jpg"
config={config}
/>
<div onClick={this.click}>Click me</div>
</div>
)
}
}
An unique ID for the first scene.
Path of image you want to display
Unique id for component
Custom style of the panorama image. Default setting:
{
width: "600px",
height: "400px",
background: "#000000"
}
A string of classes to add to the main ReactPannellum element.
Warning:
style
andclassName
are not element ofconfig
prop.
Included all default configs below. i.e:
config = {
autoLoad: true
}
When set to true
, the panorama will automatically load. When false
, the user needs to click on the load button to load the panorama. Defaults to false
.
Make the panorama auto rotate, set a specific number
will enable rotate. Default to 0
.
Sets the delay, in milliseconds, to start automatically rotating the panorama after user activity ceases. This parameter only has an effect if the autoRotateSpeep
parameter is set. Defautl to 0.
Sets the delay, in milliseconds, to stop automatically rotating the panorama after it is loaded. This parameter only has an effect if the autoRotateSpeep
parameter is set. Default to 0.
Specifies a URL for a preview image to display before the panorama is loaded.
Allows user-facing strings to be changed / translated. Default setting:
loadButtonLabel: "Click to<br>Load<br>Panorama",
loadingLabel: "Loading...",
bylineLabel: "by %s",
noPanoramaError: "No panorama image was specified.",
fileAccessError: "The file %s could not be accessed.",
malformedURLError: "There is something wrong with the panorama URL.",
iOS8WebGLError: "Due to iOS 8's broken WebGL implementation, only progressive encoded JPEGs work for your device (this panorama uses standard encoding).",
genericWebGLError: "Your browser does not have the necessary WebGL support to display this panorama.",
textureSizeError: "This panorama is too big for your device! It's %spx wide, but your device only supports images up to %spx wide. Try another device. (If you're the author, try scaling down the image.)",
unknownError: "Unknown error. Check developer console."
If set to false
, the zoom controls will not be displayed. Defaults to true
.
If set to false
, zooming with keyboard will be disabled. Defaults to true
.
If set to false
, zooming with mouse wheel will be disabled. Defaults to true
. Can also be set to fullscreenonly
, in which case it is only enabled when the viewer is fullscreen.
If set to true
, zooming with double click will be enabled. Defaults to false
.
If set to false
, mouse and touch dragging is disabled. Defaults to true
.
If set to true
, keyboard controls are disabled. Defaults to false
.
If set to false
, the fullscreen control will not be displayed. Defaults to true
. The fullscreen button will only be displayed if the browser supports the fullscreen API.
If set to false
, no controls are displayed. Defaults to true
.
Sets the panorama’s starting yaw position in degrees. Defaults to 0
.
Sets the panorama’s starting pitch position in degrees. Defaults to 0
.
Sets the minimum / maximum yaw the viewer edge can be at, in degrees. Defaults to -180 / 180, i.e. no limit.
Sets the minimum / maximum pitch the viewer edge can be at, in degrees. Defaults to -90 / 90.
Sets the panorama’s starting horizontal field of view in degrees. Defaults to 100
.
If true
, a compass is displayed. Normally defaults to false
.
Set the offset, in degrees, of the center of the panorama from North. As this affects the compass, it only has an effect if compass
is set to true
. Default to 0
This specifies an array of hot spots that can be links to other scenes, information, or external links. Each array element has the following properties:
Specifies the pitch portion of the hot spot’s location, in degrees.
Specifies the yaw portion of the hot spot’s location, in degrees.
Specifies the type of the hot spot. Can be scene for scene links or info for information hot spots. A tour configuration file is required for scene hot spots.
This specifies the text that is displayed when the user hovers over the hot spot.
If specified for an info hot spot, the hot spot links to the specified URL. Not applicable for scene hot spots.
Specifies the ID of the scene to link to for scene hot spots. Not applicable for info hot spots.
Specifies the pitch of the target scene, in degrees. Can also be set to same, which uses the current pitch of the current scene as the initial pitch of the target scene.
Specifies the yaw of the target scene, in degrees. Can also be set to same or sameAzimuth. These settings use the current yaw of the current scene as the initial yaw of the target scene; same uses the current yaw directly, while sameAzimuth takes into account the northOffset values of both scenes to maintain the same direction with regard to north.
Specifies the HFOV of the target scene, in degrees.
Specifies hot spot ID, for use with API’s removeHotSpot function.
If specified, string is used as the CSS class for the hot spot instead of the default CSS classes.
If createTooltipFunc is specified, this function is used to create the hot spot tooltip DOM instead of the default function. The contents of createTooltipArgs are passed to the function as arguments.
If clickHandlerFunc is specified, this function is added as an event handler for the hot spot’s click event. The event object and the contents of clickHandlerArgs are passed to the function as arguments.
When true
, the mouse pointer’s pitch and yaw are logged to the console when the mouse button is clicked. Defaults to false
.
Checks whether or not a panorama is loaded.
Returns true
if a panorama is loaded, else false
.
Returns the pitch of the center of the view. Returns number
Pitch in degrees
Sets the pitch of the center of the view.
Parameters:
picth
[number] Pitch in degreesanimated
[(number | boolean)] Animation duration in milliseconds or false for no animation (optional, default 1000).callback
[function] Function to call when animation finishes.callbackArgs
[object] Arguments to pass to callback function.
Returns the minimum and maximum allowed pitches (in degrees). Returns Array<number>
[minimum pitch, maximum pitch].
Set the minimum and maximum allowed pitches (in degrees).
Parameters:
bounds
[Array<number>
] [minimum pitch, maximum pitch]
Returns the yaw of the center of the view. Returns number
Yaw in degrees.
Sets the yaw of the center of the view.
Parameters:
yaw
number Yaw in degrees [-180, 180].animated
[(boolean | number)] Animation duration in milliseconds or false for no animation (optional, default 1000).callback
[function] Function to call when animation finishes.callbackArgs
[object] Arguments to pass to callback function.
Returns the minimum and maximum allowed pitches (in degrees). Returns Array<number>
[yaw pitch, maximum yaw].
Set the minimum and maximum allowed yaws (in degrees [-180, 180]).
Parameters:
bounds
[Array<number
>] [minimum yaw, maximum yaw]
Returns the horizontal field of view. Returns number
Horizontal field of view in degrees.
Sets the horizontal field of view.
Parameters:
hfov
number Horizontal in degrees.animated
[(boolean | number)] Animation duration in milliseconds or false for no animation (optional, default 1000).callback
[function] Function to call when animation finishes.callbackArgs
[object] Arguments to pass to callback function.
Returns the minimum and maximum allowed horizontal fields of view (in degrees). Returns Array<number>
[minimum hfov, maximum hfov].
Set the minimum and maximum allowed horizontal fields of view (in degrees).
Parameters:
bounds
(Array<number
>) [minimum hfov, maximum hfov].
Set a new view. Any parameters not specified remain the same.
Parameters:
pitch
[number] Target pitch.yaw
[number] Target yaw.hfov
[number] Target hfov.animated
[(boolean | number)] Animation duration in milliseconds or false for no animation (optional, default 1000).callback
[function] Function to call when animation finishes.callbackArg
s [object] Arguments to pass to callback function.
Returns the panorama’s north offset. Returns number
North offset in degrees.
Sets the panorama’s north offset.
Parameters
heading
[number] North offset in degrees
Returns the panorama’s horizon roll. Returns number
Horizon roll in degrees.
Sets the panorama’s horizon roll.
Parameters:
roll
[number] Horizon roll in degrees [-90, 90].
Returns the panorama’s horizon pitch. Returns number
Horizon pitch in degrees.
Sets the panorama’s horizon pitch.
Parameters:
pitch
[number] Horizon pitch in degrees [-90, 90].
Start auto rotation.
Parameters:
speed
[number] Auto rotation speed / direction. If not specified, previous value is used.
Stop auto rotation.
Calculate panorama pitch and yaw from location of mouse event.
Parameters:
event
MouseEvent Document mouse down event.
Returns [Array<number
>] [pitch, yaw]
Add a new scene.
Parameters:
sceneId
[string] The ID of the new scene.config
[string] The configuration of the new scene.callback
[function] Function to call when add scene finishes.
Returns object
with sceneId and current scene config.
Returns Array
of all scenes you have.
Remove a scene.
Parameters:
sceneId
[string] The ID of the scene.callback
[function] Function to call when remove scene finishes.
Returns false
if the scene is the current scene or if the scene doesn’t exists, else true
.
Change scene being viewed.
Parameters:
sceneId
string Identifier of scene to switch to.pitch
[number] Pitch to use with new scene.yaw
[number] Yaw to use with new scene.hfov
[number] HFOV to use with new scene.fadeDone
[boolean] Iftrue
, fade setup is skipped.
Toggle fullscreen.
Get configuration of current scene. Returns object
Configuration of current scene.
Get viewer’s container element. Returns HTMLElement Container div
element.
Add a new hot spot.
Parameters:
hs
[object] The configuration for the hot spot.sceneId
[string] Adds hot spot to specified scene if provided, else to current scene.
Throws any Throws an error if the scene ID is provided but invalid.
Remove a hot spot.
Parameters:
hotSpotId
string The ID of the hot spot.
Returns true
if deletion is successful, else false
.
MIT © hoaiduyit