hookehuyr

fix

1 +使用mkcert在本地生成2个免费的https证书(此命令会生成两个文件: localhost+2.pem, localhost+2-key.pem)
2 +mkcert localhost 127.0.0.1 ::1
3 +
4 +https://blog.csdn.net/themagickeyjianan/article/details/106836904
5 +https://blog.wangjunfeng.com/post/local_https/
6 +https://juejin.cn/post/7141308011921801223?searchId=20230817153624B0F9ACBED49D8807E243#heading-7
1 <!-- 1 <!--
2 * @Date: 2023-08-16 09:29:57 2 * @Date: 2023-08-16 09:29:57
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2023-08-17 13:53:41 4 + * @LastEditTime: 2023-08-18 10:35:34
5 * @FilePath: /map-demo/src/components/VRViewer/index.vue 5 * @FilePath: /map-demo/src/components/VRViewer/index.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -176,11 +176,23 @@ export default { ...@@ -176,11 +176,23 @@ export default {
176 { 176 {
177 nodeId: '1', 177 nodeId: '1',
178 position: { yaw: 10, pitch: 0 }, 178 position: { yaw: 10, pitch: 0 },
179 + arrowStyle: {
180 + color: '#AEEEEE',
181 + hoverColor: 0xaa5500,
182 + outlineColor: 0x000000,
183 + scale: [1, 1],
184 + },
179 }, 185 },
180 { 186 {
181 nodeId: '3', 187 nodeId: '3',
182 // position: { textureX: 1000, textureY: 1000 }, 188 // position: { textureX: 1000, textureY: 1000 },
183 position: { yaw: 0, pitch: 0 }, 189 position: { yaw: 0, pitch: 0 },
190 + arrowStyle: {
191 + color: '#AEEEEE',
192 + hoverColor: 0xaa5500,
193 + outlineColor: 0x000000,
194 + scale: [1, 1],
195 + },
184 }, 196 },
185 ], 197 ],
186 name: '展厅', 198 name: '展厅',
...@@ -194,10 +206,22 @@ export default { ...@@ -194,10 +206,22 @@ export default {
194 nodeId: '1', 206 nodeId: '1',
195 // position: { textureX: 1000, textureY: 1000 }, 207 // position: { textureX: 1000, textureY: 1000 },
196 position: { yaw: 10, pitch: 0 }, 208 position: { yaw: 10, pitch: 0 },
209 + arrowStyle: {
210 + color: '#AEEEEE',
211 + hoverColor: 0xaa5500,
212 + outlineColor: 0x000000,
213 + scale: [1, 1],
214 + },
197 }, 215 },
198 { 216 {
199 nodeId: '2', 217 nodeId: '2',
200 position: { yaw: 0, pitch: 0 }, 218 position: { yaw: 0, pitch: 0 },
219 + arrowStyle: {
220 + color: '#AEEEEE',
221 + hoverColor: 0xaa5500,
222 + outlineColor: 0x000000,
223 + scale: [1, 1],
224 + },
201 }, 225 },
202 ], 226 ],
203 name: '室外', 227 name: '室外',
......
1 <!-- 1 <!--
2 * @Date: 2023-05-19 14:54:27 2 * @Date: 2023-05-19 14:54:27
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2023-07-31 11:56:15 4 + * @LastEditTime: 2023-08-18 19:11:31
5 * @FilePath: /map-demo/src/views/index.vue 5 * @FilePath: /map-demo/src/views/index.vue
6 * @Description: 公众地图主体页面 6 * @Description: 公众地图主体页面
7 --> 7 -->
......