@realsee/dnalogel 0.1.5 → 0.1.7-alpha.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (151) hide show
  1. package/components/GLTFView/index.d.ts +104 -0
  2. package/components/GLTFView/index.js +181 -0
  3. package/data/81zxMaeVKLQU93OZMG.d.ts +49 -0
  4. package/data/81zxMaeVKLQU93OZMG.js +633 -0
  5. package/data/PrXel3aqGbp34JQn.js +139 -1
  6. package/data/vLykj3NWrllMrG06.js +335 -71
  7. package/libs/gltf-viewer/Subscribe.d.ts +76 -0
  8. package/libs/gltf-viewer/Subscribe.js +231 -0
  9. package/libs/gltf-viewer/coordsMoveByOffset.d.ts +13 -0
  10. package/libs/gltf-viewer/coordsMoveByOffset.js +22 -0
  11. package/libs/gltf-viewer/coordsToDirection.d.ts +5 -0
  12. package/{components/PBRView/index.js → libs/gltf-viewer/coordsToDirection.js} +14 -18
  13. package/libs/gltf-viewer/formatRad.d.ts +1 -0
  14. package/libs/gltf-viewer/formatRad.js +13 -0
  15. package/libs/gltf-viewer/getFrameTime.d.ts +1 -0
  16. package/libs/gltf-viewer/getFrameTime.js +28 -0
  17. package/libs/gltf-viewer/index.d.ts +69 -0
  18. package/libs/gltf-viewer/index.js +744 -0
  19. package/libs/gltf-viewer/mouseWheel.d.ts +2 -0
  20. package/libs/gltf-viewer/mouseWheel.js +59 -0
  21. package/libs/gltf-viewer/requestAnimationFrame.d.ts +1 -0
  22. package/libs/gltf-viewer/requestAnimationFrame.js +18 -0
  23. package/libs/gltf-viewer/requestAnimationFrameInterval.d.ts +1 -0
  24. package/libs/gltf-viewer/requestAnimationFrameInterval.js +31 -0
  25. package/libs/gltf-viewer/uuid.d.ts +4 -0
  26. package/libs/gltf-viewer/uuid.js +28 -0
  27. package/package.json +5 -4
  28. package/plugins/ModelEntryDoorGuidePlugin/index.d.ts +6 -2
  29. package/plugins/ModelEntryDoorGuidePlugin/index.js +22 -14
  30. package/plugins/ModelRoomLabelPlugin/Controller.js +1 -0
  31. package/plugins/ModelRoomLabelPlugin/RoomLabelItem.js +5 -5
  32. package/plugins/ModelRoomLabelPlugin/index.d.ts +4 -0
  33. package/plugins/ModelRoomLabelPlugin/index.js +7 -2
  34. package/plugins/PanoMaskSelectorPlugin/createBox.js +3 -0
  35. package/plugins/PanoMaskSelectorPlugin/index.js +3 -1
  36. package/plugins/PanoMeasurePlugin/Controller/BaseController.d.ts +36 -0
  37. package/plugins/PanoMeasurePlugin/Controller/BaseController.js +103 -0
  38. package/plugins/PanoMeasurePlugin/Controller/EditController.d.ts +52 -0
  39. package/plugins/PanoMeasurePlugin/Controller/EditController.js +341 -0
  40. package/plugins/PanoMeasurePlugin/Controller/ShortcutKeyController.d.ts +12 -0
  41. package/plugins/PanoMeasurePlugin/Controller/ShortcutKeyController.js +69 -0
  42. package/plugins/PanoMeasurePlugin/Controller/WatchController.d.ts +25 -0
  43. package/plugins/PanoMeasurePlugin/Controller/WatchController.js +371 -0
  44. package/plugins/PanoMeasurePlugin/Controller/index.d.ts +61 -0
  45. package/plugins/PanoMeasurePlugin/Controller/index.js +230 -0
  46. package/plugins/PanoMeasurePlugin/Model/index.d.ts +38 -0
  47. package/plugins/PanoMeasurePlugin/Model/index.js +235 -0
  48. package/plugins/PanoMeasurePlugin/Model/line.d.ts +30 -0
  49. package/plugins/PanoMeasurePlugin/Model/line.js +121 -0
  50. package/plugins/PanoMeasurePlugin/Model/point.d.ts +16 -0
  51. package/plugins/PanoMeasurePlugin/Model/point.js +68 -0
  52. package/plugins/PanoMeasurePlugin/Model/polyline.d.ts +16 -0
  53. package/plugins/PanoMeasurePlugin/Model/polyline.js +109 -0
  54. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete.svg.d.ts +2 -0
  55. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete.svg.js +11 -0
  56. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_bg.png.d.ts +2 -0
  57. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_bg.png.js +11 -0
  58. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_hover_bg.png.d.ts +2 -0
  59. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_hover_bg.png.js +11 -0
  60. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/index.d.ts +22 -0
  61. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/index.js +182 -0
  62. package/plugins/PanoMeasurePlugin/Modules/FiveHelper.d.ts +11 -0
  63. package/plugins/PanoMeasurePlugin/Modules/FiveHelper.js +66 -0
  64. package/plugins/PanoMeasurePlugin/Modules/GuideController.d.ts +18 -0
  65. package/plugins/PanoMeasurePlugin/Modules/GuideController.js +107 -0
  66. package/plugins/PanoMeasurePlugin/Modules/Magnifier.d.ts +24 -0
  67. package/plugins/PanoMeasurePlugin/Modules/Magnifier.js +139 -0
  68. package/plugins/PanoMeasurePlugin/Modules/UIController/HTML.d.ts +6 -0
  69. package/plugins/PanoMeasurePlugin/Modules/UIController/HTML.js +26 -0
  70. package/plugins/PanoMeasurePlugin/Modules/UIController/MainBtnController.d.ts +18 -0
  71. package/plugins/PanoMeasurePlugin/Modules/UIController/MainBtnController.js +169 -0
  72. package/plugins/PanoMeasurePlugin/Modules/UIController/Revoke/index.d.ts +12 -0
  73. package/plugins/PanoMeasurePlugin/Modules/UIController/Revoke/index.js +59 -0
  74. package/plugins/PanoMeasurePlugin/Modules/UIController/index.d.ts +16 -0
  75. package/plugins/PanoMeasurePlugin/Modules/UIController/index.js +123 -0
  76. package/plugins/PanoMeasurePlugin/Modules/UIController/style.d.ts +17 -0
  77. package/plugins/PanoMeasurePlugin/Modules/UIController/style.js +103 -0
  78. package/plugins/PanoMeasurePlugin/index.d.ts +7 -0
  79. package/plugins/PanoMeasurePlugin/index.js +20 -0
  80. package/plugins/PanoMeasurePlugin/typings/data.d.ts +28 -0
  81. package/plugins/PanoMeasurePlugin/typings/data.js +7 -0
  82. package/plugins/PanoMeasurePlugin/typings/event.type.d.ts +28 -0
  83. package/plugins/PanoMeasurePlugin/typings/event.type.js +7 -0
  84. package/plugins/PanoMeasurePlugin/typings/utils.type.d.ts +1 -0
  85. package/plugins/PanoMeasurePlugin/typings/utils.type.js +7 -0
  86. package/plugins/PanoMeasurePlugin/utils/clearGroup.d.ts +2 -0
  87. package/plugins/PanoMeasurePlugin/utils/clearGroup.js +16 -0
  88. package/plugins/PanoMeasurePlugin/utils/constants.d.ts +4 -0
  89. package/plugins/PanoMeasurePlugin/utils/constants.js +47 -0
  90. package/plugins/PanoMeasurePlugin/utils/distanceDom.d.ts +28 -0
  91. package/plugins/PanoMeasurePlugin/utils/distanceDom.js +147 -0
  92. package/plugins/PanoMeasurePlugin/utils/findAssociatedLines.d.ts +2 -0
  93. package/plugins/PanoMeasurePlugin/utils/findAssociatedLines.js +37 -0
  94. package/plugins/PanoMeasurePlugin/utils/findClosestPoint.d.ts +10 -0
  95. package/plugins/PanoMeasurePlugin/utils/findClosestPoint.js +49 -0
  96. package/plugins/PanoMeasurePlugin/utils/getIntersectionFromEvent.d.ts +4 -0
  97. package/plugins/PanoMeasurePlugin/utils/getIntersectionFromEvent.js +20 -0
  98. package/plugins/PanoMeasurePlugin/utils/getPointFromHammerEvent.d.ts +10 -0
  99. package/plugins/PanoMeasurePlugin/utils/getPointFromHammerEvent.js +33 -0
  100. package/plugins/PanoMeasurePlugin/utils/ironbox.d.ts +1 -0
  101. package/plugins/PanoMeasurePlugin/utils/ironbox.js +14 -0
  102. package/plugins/PanoMeasurePlugin/utils/isNDCPointInScreen.d.ts +2 -0
  103. package/plugins/PanoMeasurePlugin/utils/isNDCPointInScreen.js +16 -0
  104. package/plugins/PanoMeasurePlugin/utils/line.d.ts +17 -0
  105. package/plugins/PanoMeasurePlugin/utils/line.js +61 -0
  106. package/plugins/PanoMeasurePlugin/utils/math.d.ts +17 -0
  107. package/plugins/PanoMeasurePlugin/utils/math.js +57 -0
  108. package/plugins/PanoMeasurePlugin/utils/mouseGroup.d.ts +2 -0
  109. package/plugins/PanoMeasurePlugin/utils/mouseGroup.js +42 -0
  110. package/plugins/PanoMeasurePlugin/utils/ndc2Screen.d.ts +5 -0
  111. package/plugins/PanoMeasurePlugin/utils/ndc2Screen.js +16 -0
  112. package/plugins/PanoRulerPlugin/index.d.ts +4 -0
  113. package/plugins/PanoRulerPlugin/index.js +6 -1
  114. package/plugins/PanoTVVideoPlugin/index.d.ts +2 -0
  115. package/plugins/PanoTVVideoPlugin/index.js +20 -14
  116. package/plugins/floorplan/ModelFloorplanPlugin/Controller.d.ts +5 -2
  117. package/plugins/floorplan/ModelFloorplanPlugin/Controller.js +22 -11
  118. package/plugins/floorplan/ModelFloorplanPlugin/components/Camera.js +4 -4
  119. package/plugins/floorplan/ModelFloorplanPlugin/components/Compass.js +5 -5
  120. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomLabels.js +2 -2
  121. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomMaterial.d.ts +11 -0
  122. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomMaterial.js +174 -0
  123. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RuleLabels.d.ts +8 -0
  124. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RuleLabels.js +179 -0
  125. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/index.d.ts +2 -0
  126. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/index.js +14 -2
  127. package/plugins/floorplan/ModelFloorplanPlugin/components/index.d.ts +3 -0
  128. package/plugins/floorplan/ModelFloorplanPlugin/components/index.js +1 -1
  129. package/plugins/floorplan/ModelFloorplanPlugin/typings/utility.d.ts +2 -0
  130. package/plugins/floorplan/ModelFloorplanPlugin/typings/utility.js +7 -0
  131. package/plugins/floorplan/ModelFloorplanPlugin/utils/constant.d.ts +1 -1
  132. package/plugins/floorplan/ModelFloorplanPlugin/utils/constant.js +1 -1
  133. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.js +1 -0
  134. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.style.js +4 -4
  135. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/ExtraObjects.js +2 -2
  136. package/plugins/floorplan/TopviewFloorplanPlugin/Controller.js +3 -3
  137. package/plugins/floorplan/index.d.ts +4 -0
  138. package/plugins/floorplan/index.js +13 -0
  139. package/plugins/floorplan/typings/floorplanData.d.ts +2 -0
  140. package/plugins/floorplan/typings/floorplanServerData.d.ts +2 -0
  141. package/plugins/floorplan/utils/formatData.js +2 -1
  142. package/shared-utils/changeModelCanvasOpacity.d.ts +2 -0
  143. package/shared-utils/{changeModelCanvansOpacity.js → changeModelCanvasOpacity.js} +2 -2
  144. package/shared-utils/removeArrayItem.d.ts +7 -0
  145. package/shared-utils/removeArrayItem.js +22 -0
  146. package/shared-utils/three/loadTexture.d.ts +2 -2
  147. package/shared-utils/three/loadTexture.js +21 -2
  148. package/typedoc/libs.d.ts +1 -0
  149. package/typedoc/libs.js +7 -0
  150. package/components/PBRView/index.d.ts +0 -14
  151. package/shared-utils/changeModelCanvansOpacity.d.ts +0 -2
@@ -0,0 +1,104 @@
1
+ import * as React from 'react';
2
+ import { GLTFViewer, GLTFViewerConfig } from '../../libs/gltf-viewer';
3
+ export declare type GLTFViewPropTypes = {
4
+ url: string;
5
+ className?: string;
6
+ refs?: (gltfViewer: GLTFViewer) => void;
7
+ } & GLTFViewerConfig;
8
+ /**
9
+ * **GLTFViewer** 预览 `glTF` 模型文件(支持.gltf和.glb格式),附带光照等效果。
10
+ *
11
+ * ### Usage
12
+ *
13
+ * 基础用法:
14
+ *
15
+ * ```jsx
16
+ * import { GLTFViewer } from '@realsee/dnalogel/libs/gltf-viewer'
17
+ *
18
+ * // 创建实例
19
+ * const gltfViewer = new GLTFViewer({
20
+ * pixelRatio: 1,
21
+ * })
22
+ *
23
+ * // 挂载至 DOM 节点
24
+ * gltfViewer.appendTo(ref.current)
25
+ *
26
+ * // 加载模型文件
27
+ * await gltfViewer.load(glbCDNUrl)
28
+ *
29
+ * // 输出当前模型状态数据
30
+ * console.log(gltfViewer.state)
31
+ * // { longitude: 0, latitude: -0.3, fov: 35 }
32
+ *
33
+ * // 设置当前模型状态:直接给状态对象赋值(立即生效)
34
+ * gltfViewer.state = { longitude: 0, latitude: -0.3, fov: 35 }
35
+ *
36
+ * // 设置当前模型状态:直接给状态对象单个属性赋值(立即生效)
37
+ * gltfViewer.state.fov = 50
38
+ *
39
+ * ```
40
+ *
41
+ * 事件监听:
42
+ *
43
+ * ```jsx
44
+ * gltfViewer.on('stateChange', (state: GLTFViewerState) => {
45
+ * // 事件:模型状态变化
46
+ * })
47
+ * gltfViewer.on('willLoad', () => {
48
+ * // 即将加载
49
+ * })
50
+ * gltfViewer.on('progressing', (progressing: number) => {
51
+ * // 加载进度
52
+ * })
53
+ * gltfViewer.on('loaded', (gltf: GLTF) => {
54
+ * // 加载完成
55
+ * })
56
+ * gltfViewer.on('loadError', (error) => {
57
+ * // 加载异常
58
+ * })
59
+ * ```
60
+ *
61
+ * React 组件:
62
+ *
63
+ * ```jsx
64
+ * import { GLTFView } from '@realsee/dnalogel/components/GLTFView'
65
+ *
66
+ * <GLTFView
67
+ * url="//vrlab-static.ljcdn.com/release/web/demo.435f5fa2.glb"
68
+ * ref={(gltfViewer) => gltfViewer.on('stateChange', (state) => console.log(state))} />
69
+ * ```
70
+ *
71
+ * ### 动画
72
+ *
73
+ * `GLTFViewer` 默认不提供动画实现,但是你可以配合 [TWEEN.js](http://tweenjs.github.io/tween.js/docs/user_guide.html) 通过修改 `state` 来得到你想要的动画效果,比如:
74
+ *
75
+ * ```jsx
76
+ * import TWEEN from '@tweenjs/tween.js'
77
+ *
78
+ * function animate(time: number) {
79
+ * requestAnimationFrame(animate)
80
+ * TWEEN.update(time)
81
+ * }
82
+ *
83
+ * requestAnimationFrame(animate)
84
+ *
85
+ * const tween = new TWEEN.Tween({ fov: 35, longitude: 0, latitude: -0.3 })
86
+ * .to({fov: 60, latitude: -1.1496852156837822, longitude: 2.4468501085409855 }, 2000 )
87
+ * .easing(TWEEN.Easing.Quadratic.Out)
88
+ * .onUpdate((newState) => gltfViewer.state = newState)
89
+ * .start()
90
+ *
91
+ * ```
92
+ *
93
+ * ### 光照配置
94
+ *
95
+ * ```ts
96
+ * pointLight?: THREE.PointLight | false
97
+ * directionalLight?: THREE.DirectionalLight | false
98
+ * ambientLight?: THREE.AmbientLight | false
99
+ * ```
100
+ * 自带三种默认光照配置,你可以提供自己的光照实例。如果设置 `pointLight: false` 则禁用该光照效果。
101
+ *
102
+ */
103
+ export declare const GLTFView: React.FC<GLTFViewPropTypes>;
104
+ export default GLTFView;
@@ -0,0 +1,181 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.array.iterator.js");
4
+
5
+ require("core-js/modules/es.object.to-string.js");
6
+
7
+ require("core-js/modules/es.string.iterator.js");
8
+
9
+ require("core-js/modules/es.weak-map.js");
10
+
11
+ require("core-js/modules/web.dom-collections.iterator.js");
12
+
13
+ require("core-js/modules/es.object.define-property.js");
14
+
15
+ require("core-js/modules/es.object.get-own-property-descriptor.js");
16
+
17
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
18
+
19
+ var _typeof = require("@babel/runtime/helpers/typeof");
20
+
21
+ Object.defineProperty(exports, "__esModule", {
22
+ value: true
23
+ });
24
+ exports["default"] = exports.GLTFView = void 0;
25
+
26
+ var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
27
+
28
+ var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
29
+
30
+ var React = _interopRequireWildcard(require("react"));
31
+
32
+ var _gltfViewer = require("../../libs/gltf-viewer");
33
+
34
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
35
+
36
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
37
+
38
+ /**
39
+ * **GLTFViewer** 预览 `glTF` 模型文件(支持.gltf和.glb格式),附带光照等效果。
40
+ *
41
+ * ### Usage
42
+ *
43
+ * 基础用法:
44
+ *
45
+ * ```jsx
46
+ * import { GLTFViewer } from '@realsee/dnalogel/libs/gltf-viewer'
47
+ *
48
+ * // 创建实例
49
+ * const gltfViewer = new GLTFViewer({
50
+ * pixelRatio: 1,
51
+ * })
52
+ *
53
+ * // 挂载至 DOM 节点
54
+ * gltfViewer.appendTo(ref.current)
55
+ *
56
+ * // 加载模型文件
57
+ * await gltfViewer.load(glbCDNUrl)
58
+ *
59
+ * // 输出当前模型状态数据
60
+ * console.log(gltfViewer.state)
61
+ * // { longitude: 0, latitude: -0.3, fov: 35 }
62
+ *
63
+ * // 设置当前模型状态:直接给状态对象赋值(立即生效)
64
+ * gltfViewer.state = { longitude: 0, latitude: -0.3, fov: 35 }
65
+ *
66
+ * // 设置当前模型状态:直接给状态对象单个属性赋值(立即生效)
67
+ * gltfViewer.state.fov = 50
68
+ *
69
+ * ```
70
+ *
71
+ * 事件监听:
72
+ *
73
+ * ```jsx
74
+ * gltfViewer.on('stateChange', (state: GLTFViewerState) => {
75
+ * // 事件:模型状态变化
76
+ * })
77
+ * gltfViewer.on('willLoad', () => {
78
+ * // 即将加载
79
+ * })
80
+ * gltfViewer.on('progressing', (progressing: number) => {
81
+ * // 加载进度
82
+ * })
83
+ * gltfViewer.on('loaded', (gltf: GLTF) => {
84
+ * // 加载完成
85
+ * })
86
+ * gltfViewer.on('loadError', (error) => {
87
+ * // 加载异常
88
+ * })
89
+ * ```
90
+ *
91
+ * React 组件:
92
+ *
93
+ * ```jsx
94
+ * import { GLTFView } from '@realsee/dnalogel/components/GLTFView'
95
+ *
96
+ * <GLTFView
97
+ * url="//vrlab-static.ljcdn.com/release/web/demo.435f5fa2.glb"
98
+ * ref={(gltfViewer) => gltfViewer.on('stateChange', (state) => console.log(state))} />
99
+ * ```
100
+ *
101
+ * ### 动画
102
+ *
103
+ * `GLTFViewer` 默认不提供动画实现,但是你可以配合 [TWEEN.js](http://tweenjs.github.io/tween.js/docs/user_guide.html) 通过修改 `state` 来得到你想要的动画效果,比如:
104
+ *
105
+ * ```jsx
106
+ * import TWEEN from '@tweenjs/tween.js'
107
+ *
108
+ * function animate(time: number) {
109
+ * requestAnimationFrame(animate)
110
+ * TWEEN.update(time)
111
+ * }
112
+ *
113
+ * requestAnimationFrame(animate)
114
+ *
115
+ * const tween = new TWEEN.Tween({ fov: 35, longitude: 0, latitude: -0.3 })
116
+ * .to({fov: 60, latitude: -1.1496852156837822, longitude: 2.4468501085409855 }, 2000 )
117
+ * .easing(TWEEN.Easing.Quadratic.Out)
118
+ * .onUpdate((newState) => gltfViewer.state = newState)
119
+ * .start()
120
+ *
121
+ * ```
122
+ *
123
+ * ### 光照配置
124
+ *
125
+ * ```ts
126
+ * pointLight?: THREE.PointLight | false
127
+ * directionalLight?: THREE.DirectionalLight | false
128
+ * ambientLight?: THREE.AmbientLight | false
129
+ * ```
130
+ * 自带三种默认光照配置,你可以提供自己的光照实例。如果设置 `pointLight: false` 则禁用该光照效果。
131
+ *
132
+ */
133
+ var GLTFView = function GLTFView(props) {
134
+ var ref = React.useRef(null);
135
+ React.useEffect(function () {
136
+ if (!ref.current) return;
137
+ var gltfViewer = new _gltfViewer.GLTFViewer(props);
138
+ gltfViewer.appendTo(ref.current);
139
+
140
+ var callback = /*#__PURE__*/function () {
141
+ var _ref = (0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee() {
142
+ return _regenerator["default"].wrap(function _callee$(_context) {
143
+ while (1) {
144
+ switch (_context.prev = _context.next) {
145
+ case 0:
146
+ _context.next = 2;
147
+ return gltfViewer.load(props.url);
148
+
149
+ case 2:
150
+ case "end":
151
+ return _context.stop();
152
+ }
153
+ }
154
+ }, _callee);
155
+ }));
156
+
157
+ return function callback() {
158
+ return _ref.apply(this, arguments);
159
+ };
160
+ }();
161
+
162
+ callback(); // 实例
163
+
164
+ if (props.refs) {
165
+ props.refs(gltfViewer);
166
+ }
167
+
168
+ return function () {
169
+ gltfViewer.dispose();
170
+ };
171
+ }, []);
172
+ return /*#__PURE__*/React.createElement("div", {
173
+ className: 'GLTFView ' + (props.className || ''),
174
+ ref: ref
175
+ });
176
+ };
177
+
178
+ exports.GLTFView = GLTFView;
179
+ GLTFView.defaultProps = {};
180
+ var _default = GLTFView;
181
+ exports["default"] = _default;
@@ -0,0 +1,49 @@
1
+ export declare const work: {
2
+ _signature: string;
3
+ allow_hosts: string[];
4
+ base_url: string;
5
+ certificate: string;
6
+ create_time: null;
7
+ expire_at: string;
8
+ initial: {
9
+ fov: number;
10
+ latitude: number;
11
+ longitude: number;
12
+ pano_index: number;
13
+ recordVideo: boolean;
14
+ };
15
+ model: {
16
+ file_url: string;
17
+ material_base_url: string;
18
+ material_textures: string[];
19
+ };
20
+ observers: {
21
+ accessible_nodes: number[];
22
+ create_time: string;
23
+ floor_index: number;
24
+ id: number;
25
+ index: number;
26
+ position: number[];
27
+ quaternion: {
28
+ w: number;
29
+ x: number;
30
+ y: number;
31
+ z: number;
32
+ };
33
+ standing_position: number[];
34
+ visible_nodes: number[];
35
+ }[];
36
+ panorama: {
37
+ count: number;
38
+ list: {
39
+ back: string;
40
+ down: string;
41
+ front: string;
42
+ index: number;
43
+ left: string;
44
+ right: string;
45
+ up: string;
46
+ }[];
47
+ };
48
+ picture_url: string;
49
+ };