Vue3 + Photo-sphere-viewer 全景

news/2024/11/22 17:35:07/

Photo Sphere Viewer是一款基于Three.js的360X180度全景图预览js插件。该js插件可以360度旋转查看全景图,也可以上下180度查看图片。使用该插件的唯一要求是浏览器支持canvas或WebGL。

在这里插入图片描述
这只是一个简单的全景图,我们还可以在全景图上面不同位置添加标注,修改、删除标注等操作。

一、插件引入

1、npm 安装

npm install phoyo-sphere-viewer

2、直接导入

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/photo-sphere-viewer@4/dist/photo-sphere-viewer.min.css"/>
<script src="https://cdn.jsdelivr.net/npm/three/build/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/uevent@2/browser.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/photo-sphere-viewer@4/dist/photo-sphere-viewer.min.js"></script>

但是在此处,个人建议使用 npm 进行安装。

二、全景图的基本使用

1、插件引入

import { Viewer } from 'photo-sphere-viewer' // 引入插件
import 'photo-sphere-viewer/dist/photo-sphere-viewer.css' //引入CSS样式

2、创建容器

<div id="viewer"></div>

3、正式使用

// 全景视图
let panoramaViewer = null
// 全景图初始化
const initViewer = async function () {panoramaViewer = new Viewer({container: document.querySelector('#viewer'), // 容器panorama: img, // 全景图片地址navbar: ['autorotate','zoom','caption','fullscreen'],plugins: [], // 标记点size: {width: '100%',height: '100%'}})
}onBeforeMount(() => {initViewer()
})

4、多张全景图切换使用

在切换使用其他全景图之前,首先要注意销毁之前的全景图,然后在重新初始化新的全景图。

panoramaViewer.destroy() // 销毁全景图

三、全景图标注的使用

1、插件引入

import * as Marker from 'photo-sphere-viewer/dist/plugins/markers' // 引入插件
import 'photo-sphere-viewer/dist/plugins/markers.css' // 引入标注样式

2、基本使用

// 全景视图
let panoramaViewer = null
// 全景图初始化
const initViewer = async function () {// panoramaViewer.destroy()panoramaViewer = new Viewer({container: document.querySelector('#viewer'),panorama: img, // 全景图片地址navbar: ['autorotate','zoom','caption','fullscreen'],// 标记点plugins: [[Marker, {markers: [{id: '1',imageLayer: img,width: 120,height: 94,longitude: -0.22188456912854737,latitude: 6.1139406999543375,tooltip: 'test-1',content: '<div class="tooltip-content"><h3>test-1</h3><p>描述描述描述</p></div>'}]}]],size: {width: '100%',height: '100%'}})
}onBeforeMount(() => {initViewer()
})

3、标注比较高级使用

// 全景视图
let panoramaViewer = null
// 注标列表
const markerList = ref([])// 全景图初始化
const initViewer = async function () {panoramaViewer = new Viewer({container: document.querySelector('#viewer'),panorama: img, // 全景图片地址navbar: ['autorotate','zoom','caption','fullscreen'],// 标记点plugins: [[Marker.MarkersPlugin]],size: {width: '100%',height: '100%'}})markersPlugin = panoramaViewer.getPlugin(Marker.MarkersPlugin)readyEvents()
}onBeforeMount(() => {initViewer()
})// 全景图加载完毕
const readyEvents = function () {// 加载完毕panoramaViewer.once('ready', () => {// 初始化标注坐标initMarkers()})// 全景图点击事件panoramaViewer.on('click', (e, data) => {// console.log(`${data.rightclick ? 'right ' : ''}clicked at longitude: ${data.longitude} latitude: ${data.latitude}`)})// 选中标注事件markersPlugin.on('select-marker', (e, marker) => {// console.log('选中标注事件')})
}// 初始化标注坐标
const initMarkers = async function () {markersPlugin.clearMarkers()markerList.value.forEach(markerItem => {const { latitude, longitude, markerId, title, style } = markerItemmarkersPlugin.addMarker({longitude: longitude,latitude: latitude,width: 20,height: 20,id: markerId,data: markerItem})})
}

四、Photo-Sphere-Viewer常用的属性

panorama:必填参数,全景图的路径。
container:必填参数,放置全景图的div元素。
autoload:可选,默认值为true,true为自动调用全景图,false为在后面加载全景图(通过.load()方法)。
us empdata:可选,默认值为true,如果Photo Sphere Viewer必须读入XMP数据则为true。
default_position:可选,默认值为{},定义默认的位置,及用户看见的第一个点,例如:{long: Math.PI, lat: Math.PI/2}。
min_fov:可选,默认值为30,观察的最小区域,单位degrees,在1-179之间。
max_fov:可选,默认值为90,观察的最大区域,单位degrees,在1-179之间。
allow_user_interactions:可选,默认值为true,设置为false则禁止用户和全景图交互(导航条不可用)。
tilt_up_max:可选,默认值为Math.PI/2,向上倾斜的最大角度,单位radians。
tilt_down_max:可选,默认值为Math.PI/2,向下倾斜的最大角度,单位radians。
zoom_level:可选,默认值为0,默认的缩放级别,值在0-100之间。
long_offset:可选,默认值为 Math.PI/360,mouse/touch移动时每像素经过的经度值。
lat_offset:可选,默认值为 Math.PI/180,mouse/touch移动时每像素经过的纬度值。
time_anim:可选,默认值为2000,全景图在time_anim毫秒后会自动进行动画。(设置为false禁用它)
theta_offset:过时的选项,可选,默认值为1440,自动动画时水平方向的速度。
anim_speed:可选,默认值为2rpm,动画的速度,每秒/分钟多少radians/degrees/revolutions。
navbar:可选值,默认为false。显示导航条。
navbar_style:可选值,默认为{}。导航条的自定义样式。下面是可用的样式列表:
backgroundColor:导航条的背景颜色,默认值为rgba(61, 61, 61, 0.5)。
buttonsColor:按钮的前景颜色,默认值为transparent。
activeButtonsBackgroundColor:按钮激活状态的背景颜色,默认值为rgba(255, 255, 255, 0.1)。
buttonsHeight:按钮的高度,单位像素,默认值为20。
autorotateThickness:autorotate图标的厚度,单位像素,默认值为1。
zoomRangeWidth:缩放的范围,单位显示,默认值50。
zoomRangeThickness:缩放的范围的厚度,单位像素,默认值1。
zoomRangeDisk:缩放范围的圆盘直径,单位像素,默认值为7。
fullscreenRatio:全屏图标的比例,默认值为3/4。
fullscreenThickness:全屏图标的厚度,单位像素,默认值为2。
loading_msg:可选,默认值为Loading…,图片加载时的提示文字。
loading_img:可选,默认值为null,在加载时显示的图片的路径。
size:可选,默认值null,全景图容器的最终尺寸。例如:{width: 500, height: 300}。
onready:可选值,默认值为null。当全景图准备就绪并且第一张图片显示时的回调函数。

五、参考文章

photo-sphere-viewe 官网:https://photo-sphere-viewer.js.org/
vue + photo-sphere-viewer 渲染全景图片:https://blog.csdn.net/qq_32051663/article/details/120955999
photo-sphere-viewer 中文文档:https://blog.csdn.net/weixin_42752574/article/details/122243459


http://www.ppmy.cn/news/280172.html

相关文章

photo-sphere-viewer 全景图Vr 720全景查看(vue篇)

一、安装以及引入方式 npm install photo-sphere-viewer/core /***插件安装**/ npm install photo-sphere-viewer/markers-plugin npm install photo-sphere-viewer/gallery-plugin npm install photo-sphere-viewer/autorotate-plugin二、PhotoSphereViewer.vue <templat…

Unity 制作360全景视频 全景图片流程

Recorder的使用 在Unity制作360图片或者视频需要用到UnityPackage:Recorder 如果没有就在Package Manager寻找 1、在菜单栏找到Window/General/Recorder/RecorderWindow 参数说明: Animation Clip&#xff1a;录制动画剪辑 Movie&#xff1a;录制视频 Image Sequence&a…

vue实现vr看360°全景效果

1&#xff1a;首先创建一个vue的基础项目 vue create demo 2&#xff1a;启动并打开项目 3&#xff1a;在生成的public文件夹下找到Index.html&#xff0c;然后在script标签中引入three.js <script src"https://cdn.jsdelivr.net/npm/three0.93.0/build/three.min.js&…

4K高清视频素材,拿去不谢。

推荐几个高清视频素材网站&#xff0c;重点是可以免费下载&#xff0c;还可以商用&#xff0c;记得收藏哦&#xff01; 1、菜鸟图库 https://www.sucai999.com/video.html?vNTYwNDUx 菜鸟图库是一个素材量非常大得网站&#xff0c;站内不仅有非常多高清视频素材之外&#x…

Vue使用photo-sphere-viewer360°×180°全景插件模拟VR看房、房间切换

近两年随着VR的火热&#xff0c;市面上也出现了很多购房和二手房软件小程序出现了VR看房功能&#xff0c;实现足不出户就能亲身体验&#xff0c;那么类似这样的功能是怎么实现的呢&#xff1f; 今天阿七就和大家一起来学习一下360180全景插件photo-sphere-viewer和他的插件&am…

二、H5全景图-朋友圈全景图-720°全景-VR ---- 项目简单分析

原文地址&#xff1a; http://blog.csdn.net/qq_24889075/article/details/51974204 http://www.jianshu.com/p/a1b8707e3e08 本文纯属个人观点&#xff0c;如有错误请指点 官方网站 这里我们主要看一下生成的项目中都有什么。源码中都有什么&#xff0c;如何去自定义 我们…

前端使用UtoVR Player全景视频播放器实现360°C全景VR视频

准备&#xff1a; 官网&#xff1a;http://www.utovr.com Web包git下载地址&#xff1a;https://github.com/u10k/utovr.git UtoVR Player介绍&#xff1a; UtoVR Player是一款全景视频播放器。它支持360度空间全景视频的播放。观看者通过与播放器的交互&#xff0c;可以体验…

UE4中采集360°全景图片和视频

UE4中导出全景图片和视频 1.插件测试—采集单帧双眼图像 打开Epic Games Launcher&#xff0c;启动引擎&#xff08;我使用的版本为4.14.0&#xff09;。在弹出的对话框中点击New Project标签栏&#xff0c;再选择C标签页&#xff0c;选择Vehicle Advanced模板&#xff0c;并将…