We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Your demo has a warning about "PhotoSphereViewer: button "markers" not found in the navbar."
How can this be resolved?
The text was updated successfully, but these errors were encountered:
I got the same warning while playing around with the examples. The problem in my case was that i removed the 'markers' from the navbar configuration:
let PSV = new PhotoSphereViewer({ container: 'photosphere', panorama: query.url, navbar: [ 'autorotate', 'zoom', // 'markers', 'spacer-1', 'gyroscope', 'fullscreen' ] });
My solution was to hide the markers button from the navbar instead of removing it from the navbar configuration:
let PSV = new PhotoSphereViewer({ container: 'photosphere', panorama: query.url, navbar: [ 'autorotate', 'zoom', 'markers', 'spacer-1', 'gyroscope', 'fullscreen' ] }); PSV.getNavbarButton('markers').hide();
Sorry, something went wrong.
0e4f45d
No branches or pull requests
Your demo has a warning about "PhotoSphereViewer: button "markers" not found in the navbar."
How can this be resolved?
The text was updated successfully, but these errors were encountered: