-
Notifications
You must be signed in to change notification settings - Fork 955
/
test.js
81 lines (61 loc) · 1.59 KB
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
window.onload = function() {
document.getElementById('go').addEventListener('click', loadPredefinedPanorama, false);
document.getElementById('pano').addEventListener('change', upload, false);
};
// Load the predefined panorama
function loadPredefinedPanorama(evt) {
evt.preventDefault();
// Loader
var loader = document.createElement('div');
loader.className = 'loader';
// Panorama display
var div = document.getElementById('container');
div.style.height = '30px';
PSV = new PhotoSphereViewer({
// Path to the panorama
panorama: 'examples/sun.jpg',
// Container
container: div,
// Deactivate the animation
time_anim: false,
// Display the navigation bar
navbar: true,
// Resize the panorama
size: {
width: '100%',
height: '500px'
},
// HTML loader
loading_html: loader,
// Disable smooth moves to test faster
smooth_user_moves: false
});
}
// Load a panorama stored on the user's computer
function upload() {
// Retrieve the chosen file and create the FileReader object
var file = document.getElementById('pano').files[0];
var reader = new FileReader();
reader.onload = function() {
PSV = new PhotoSphereViewer({
// Panorama, given in base 64
panorama: reader.result,
// Container
container: 'your-pano',
// Deactivate the animation
time_anim: false,
// Display the navigation bar
navbar: true,
// Resize the panorama
size: {
width: '100%',
height: '500px'
},
// No XMP data
usexmpdata: false
});
};
reader.readAsDataURL(file);
}
// Yep, an ugly global variable (to make tests with the console)
var PSV;