hookehuyr

fix

使用mkcert在本地生成2个免费的https证书(此命令会生成两个文件: localhost+2.pem, localhost+2-key.pem)
mkcert localhost 127.0.0.1 ::1
https://blog.csdn.net/themagickeyjianan/article/details/106836904
https://blog.wangjunfeng.com/post/local_https/
https://juejin.cn/post/7141308011921801223?searchId=20230817153624B0F9ACBED49D8807E243#heading-7
<!--
* @Date: 2023-08-16 09:29:57
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2023-08-17 13:53:41
* @LastEditTime: 2023-08-18 10:35:34
* @FilePath: /map-demo/src/components/VRViewer/index.vue
* @Description: 文件描述
-->
......@@ -176,11 +176,23 @@ export default {
{
nodeId: '1',
position: { yaw: 10, pitch: 0 },
arrowStyle: {
color: '#AEEEEE',
hoverColor: 0xaa5500,
outlineColor: 0x000000,
scale: [1, 1],
},
},
{
nodeId: '3',
// position: { textureX: 1000, textureY: 1000 },
position: { yaw: 0, pitch: 0 },
arrowStyle: {
color: '#AEEEEE',
hoverColor: 0xaa5500,
outlineColor: 0x000000,
scale: [1, 1],
},
},
],
name: '展厅',
......@@ -194,10 +206,22 @@ export default {
nodeId: '1',
// position: { textureX: 1000, textureY: 1000 },
position: { yaw: 10, pitch: 0 },
arrowStyle: {
color: '#AEEEEE',
hoverColor: 0xaa5500,
outlineColor: 0x000000,
scale: [1, 1],
},
},
{
nodeId: '2',
position: { yaw: 0, pitch: 0 },
arrowStyle: {
color: '#AEEEEE',
hoverColor: 0xaa5500,
outlineColor: 0x000000,
scale: [1, 1],
},
},
],
name: '室外',
......
<!--
* @Date: 2023-05-19 14:54:27
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2023-07-31 11:56:15
* @LastEditTime: 2023-08-18 19:11:31
* @FilePath: /map-demo/src/views/index.vue
* @Description: 公众地图主体页面
-->
......