我使用PhotosphereViewer 来显示全景图像。
我使用以下代码成功初始化查看器 -
var viewer = new PhotoSphereViewer.Viewer({
panorama: '/images/myimage.jpg',
container: 'stage',
loadingImg: 'https://photo-sphere-viewer.js.org/assets/photosphere-logo.gif',
caption: 'Parc national du Mercantour <b>© Damien Sorel</b>',
defaultLat: 0.3,
plugins: [
[PhotoSphereViewer.MarkersPlugin, {
// list of markers
markers: [
]
}]
]
});
初始化查看器后,我使用以下命令获取对 MarkersPlugin 的引用 -
var markersPlugin = viewer.getPlugin(PhotoSphereViewer.MarkersPlugin);
知道为什么markersPlugin
总是 null 吗?