@realsee/five 6.8.0-alpha.26 → 6.8.0-alpha.28

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 (44) hide show
  1. package/ai_guides/features/event.md +12 -7
  2. package/ai_guides/features/load-external-model.md +1 -0
  3. package/ai_guides/release_notes/6.8.md +1 -1
  4. package/docs/classes/five.Five.html +17 -17
  5. package/docs/documents/features_event.html +5 -2
  6. package/docs/documents/features_load-external-model.html +1 -0
  7. package/docs/documents/release_notes_6.8.html +1 -1
  8. package/docs/interfaces/five.PanoramaControllerCustomInitArgs.html +9 -9
  9. package/docs/interfaces/five.VRPanoramaControllerCustomInitArgs.html +8 -8
  10. package/docs/interfaces/five.XRPanoramaControllerCustomInitArgs.html +8 -8
  11. package/five/index.js +67 -67
  12. package/five/index.mjs +1930 -1812
  13. package/five/model/loaders/glTF-helpers/extensions/KHR_gaussian_splatting.d.ts +19 -0
  14. package/five/model/loaders/glTF-helpers/extensions/KHR_gaussian_splatting_compression_spz.d.ts +3 -1
  15. package/five/model/loaders/glTF-helpers/extensions/KHR_gaussian_splatting_compression_spz_2.d.ts +11 -0
  16. package/five/model/loaders/glTF-helpers/index.d.ts +2 -0
  17. package/gltf-loader/index.js +2 -2
  18. package/gltf-loader/index.mjs +2 -2
  19. package/line/index.js +2 -2
  20. package/line/index.mjs +2 -2
  21. package/package.json +1 -1
  22. package/plugins/index.js +1 -1
  23. package/plugins/index.mjs +1 -1
  24. package/react/index.js +1 -1
  25. package/react/index.mjs +1 -1
  26. package/shader-lib/index.js +1 -1
  27. package/shader-lib/index.mjs +1 -1
  28. package/sticker/index.js +2 -2
  29. package/sticker/index.mjs +2 -2
  30. package/umd/five-gltf-loader.js +2 -2
  31. package/umd/five-line.js +2 -2
  32. package/umd/five-plugins.js +1 -1
  33. package/umd/five-react.js +1 -1
  34. package/umd/five-shader-lib.js +1 -1
  35. package/umd/five-sticker.js +2 -2
  36. package/umd/five-vfx.js +1 -1
  37. package/umd/five-vue.js +1 -1
  38. package/umd/five.js +12 -12
  39. package/vfx/index.js +1 -1
  40. package/vfx/index.mjs +1 -1
  41. package/vue/index.js +1 -1
  42. package/vue/index.mjs +1 -1
  43. package/work-downloader/index.js +1 -1
  44. package/work-downloader/index.mjs +1 -1
@@ -64,9 +64,12 @@
64
64
  <h3 id="waituntil" class="tsd-anchor-link">waitUntil<a href="#waituntil" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3>
65
65
  <p><code>waitUntil(promise)</code> 仅在 <code>ExtendableEvent</code> 上可用。调用后,Five 会等待传入的 Promise 完成后再继续后续流程。可多次调用,所有 Promise 会被并行等待。</p>
66
66
  <p>目前仅 <code>pano.prepare</code> 事件支持 <code>waitUntil</code>。</p>
67
- <pre><code class="typescript"><span class="hl-8">// 示例:在切换点位前预加载资源</span><br/><span class="hl-6">five</span><span class="hl-1">.</span><span class="hl-5">on</span><span class="hl-1">(</span><span class="hl-9">&quot;pano.prepare&quot;</span><span class="hl-1">, (</span><span class="hl-6">event</span><span class="hl-1">) </span><span class="hl-3">=&gt;</span><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-8">// 等待自定义资源加载完成后再继续点位切换</span><br/><span class="hl-1"> </span><span class="hl-6">event</span><span class="hl-1">.</span><span class="hl-5">waitUntil</span><span class="hl-1">(</span><br/><span class="hl-1"> </span><span class="hl-5">loadCustomResources</span><span class="hl-1">(</span><span class="hl-6">event</span><span class="hl-1">.</span><span class="hl-6">pano</span><span class="hl-1">)</span><br/><span class="hl-1"> );</span><br/><br/><span class="hl-1"> </span><span class="hl-8">// 可以多次调用,所有 Promise 会被并行等待</span><br/><span class="hl-1"> </span><span class="hl-6">event</span><span class="hl-1">.</span><span class="hl-5">waitUntil</span><span class="hl-1">(</span><br/><span class="hl-1"> </span><span class="hl-5">preloadTextures</span><span class="hl-1">(</span><span class="hl-6">event</span><span class="hl-1">.</span><span class="hl-6">pano</span><span class="hl-1">)</span><br/><span class="hl-1"> );</span><br/><span class="hl-1">});</span><br/><br/><span class="hl-8">// 示例:结合 preventDefault waitUntil 实现条件拦截</span><br/><span class="hl-6">five</span><span class="hl-1">.</span><span class="hl-5">on</span><span class="hl-1">(</span><span class="hl-9">&quot;pano.prepare&quot;</span><span class="hl-1">, </span><span class="hl-3">async</span><span class="hl-1"> (</span><span class="hl-6">event</span><span class="hl-1">) </span><span class="hl-3">=&gt;</span><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-3">const</span><span class="hl-1"> </span><span class="hl-4">allowed</span><span class="hl-1"> = </span><span class="hl-10">await</span><span class="hl-1"> </span><span class="hl-5">checkPermission</span><span class="hl-1">(</span><span class="hl-6">event</span><span class="hl-1">.</span><span class="hl-6">pano</span><span class="hl-1">);</span><br/><span class="hl-1"> </span><span class="hl-10">if</span><span class="hl-1"> (!</span><span class="hl-6">allowed</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-6">event</span><span class="hl-1">.</span><span class="hl-5">preventDefault</span><span class="hl-1">();</span><br/><span class="hl-1"> }</span><br/><span class="hl-1">});</span>
67
+ <pre><code class="typescript"><span class="hl-8">// 示例:在切换点位前预加载资源</span><br/><span class="hl-6">five</span><span class="hl-1">.</span><span class="hl-5">on</span><span class="hl-1">(</span><span class="hl-9">&quot;pano.prepare&quot;</span><span class="hl-1">, (</span><span class="hl-6">event</span><span class="hl-1">) </span><span class="hl-3">=&gt;</span><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-8">// 等待自定义资源加载完成后再继续点位切换</span><br/><span class="hl-1"> </span><span class="hl-6">event</span><span class="hl-1">.</span><span class="hl-5">waitUntil</span><span class="hl-1">(</span><br/><span class="hl-1"> </span><span class="hl-5">loadCustomResources</span><span class="hl-1">(</span><span class="hl-6">event</span><span class="hl-1">.</span><span class="hl-6">pano</span><span class="hl-1">)</span><br/><span class="hl-1"> );</span><br/><br/><span class="hl-1"> </span><span class="hl-8">// 可以多次调用,所有 Promise 会被并行等待</span><br/><span class="hl-1"> </span><span class="hl-6">event</span><span class="hl-1">.</span><span class="hl-5">waitUntil</span><span class="hl-1">(</span><br/><span class="hl-1"> </span><span class="hl-5">preloadTextures</span><span class="hl-1">(</span><span class="hl-6">event</span><span class="hl-1">.</span><span class="hl-6">pano</span><span class="hl-1">)</span><br/><span class="hl-1"> );</span><br/><span class="hl-1">});</span><br/><br/><span class="hl-8">// 示例:通过 waitUntil reject 来取消走点</span><br/><span class="hl-6">five</span><span class="hl-1">.</span><span class="hl-5">on</span><span class="hl-1">(</span><span class="hl-9">&quot;pano.prepare&quot;</span><span class="hl-1">, (</span><span class="hl-6">event</span><span class="hl-1">) </span><span class="hl-3">=&gt;</span><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-6">event</span><span class="hl-1">.</span><span class="hl-5">waitUntil</span><span class="hl-1">(</span><br/><span class="hl-1"> </span><span class="hl-5">showConfirmDialog</span><span class="hl-1">(</span><span class="hl-9">&quot;是否前往该点位?&quot;</span><span class="hl-1">).</span><span class="hl-5">then</span><span class="hl-1">((</span><span class="hl-6">confirmed</span><span class="hl-1">) </span><span class="hl-3">=&gt;</span><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-10">if</span><span class="hl-1"> (!</span><span class="hl-6">confirmed</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-10">throw</span><span class="hl-1"> </span><span class="hl-3">new</span><span class="hl-1"> </span><span class="hl-5">Error</span><span class="hl-1">(</span><span class="hl-9">&quot;用户取消走点&quot;</span><span class="hl-1">);</span><br/><span class="hl-1"> }</span><br/><span class="hl-1"> })</span><br/><span class="hl-1"> );</span><br/><span class="hl-1">});</span>
68
68
  </code><button type="button">Copy</button></pre>
69
69
 
70
+ <blockquote>
71
+ <p><strong>注意</strong>: <code>preventDefault</code> 和 <code>waitUntil</code> 必须在事件回调的同步执行阶段调用,不能放在 <code>await</code> 之后。</p>
72
+ </blockquote>
70
73
  <h2 id="concepts" class="tsd-anchor-link">Concepts<a href="#concepts" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h2>
71
74
  <p>Five 的事件系统将事件主要分为以下几类:</p>
72
75
  <h3 id="gesture-events-交互手势" class="tsd-anchor-link">Gesture Events (交互手势)<a href="#gesture-events-交互手势" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3>
@@ -83,7 +86,7 @@
83
86
  <h3 id="pano-events-全景导航" class="tsd-anchor-link">Pano Events (全景导航)<a href="#pano-events-全景导航" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3>
84
87
  <p>监听全景图的点位切换过程。</p>
85
88
  <ul>
86
- <li><code>pano.prepare</code>: 准备切换到新点位。这是一个 <code>ExtendableEvent</code>,支持通过 <code>waitUntil(promise)</code> 延迟后续加载流程(如预加载资源)。</li>
89
+ <li><code>pano.prepare</code>: 准备切换到新点位。这是一个 <code>ExtendableEvent</code>,支持通过 <code>waitUntil(promise)</code> 延迟后续加载流程(如预加载资源),以及通过 <code>preventDefault()</code> 取消本次走点。</li>
87
90
  <li><code>pano.arrived</code>: 成功到达新点位(移动动画结束)。</li>
88
91
  <li><code>pano.moving</code>: 正在移动到新点位(动画进行中)。</li>
89
92
  <li><code>pano.willChange</code>: 即将发生点位变更(旧版兼容)。</li>
@@ -53,6 +53,7 @@
53
53
  <li><code>REALSEE_materials_lightmap</code></li>
54
54
  <li><code>KHR_gaussian_splatting</code></li>
55
55
  <li><code>KHR_gaussian_splatting_compression_spz</code></li>
56
+ <li><code>KHR_gaussian_splatting_compression_spz_2</code></li>
56
57
  </ul>
57
58
  <table>
58
59
  <thead>
@@ -14,7 +14,7 @@
14
14
  <ol>
15
15
  <li><code>.splat</code> 文档及工具 <a href="https://github.com/antimatter15/splat">GitHub - antimatter15/splat: WebGL 3D Gaussian Splat Viewer</a></li>
16
16
  <li><code>.spz</code> 文档及工具 GitHub - <a href="https://github.com/nianticlabs/spz">nianticlabs/spz: File format for 3D Gaussian splats. About 10x smaller than the PLY equival</a></li>
17
- <li><code>.glb</code> <code>.gltf</code> 对应的 KHR_gaussian_splatting_compression_spz 扩展。</li>
17
+ <li><code>.glb</code> <code>.gltf</code> 对应的 KHR_gaussian_splatting, KHR_gaussian_splatting_compression_spz, KHR_gaussian_splatting_compression_spz_2 扩展。</li>
18
18
  </ol>
19
19
  <h3 id="支持-3d-tile" class="tsd-anchor-link">支持 3d-tile<a href="#支持-3d-tile" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3>
20
20
  <blockquote>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>PanoramaControllerCustomInitArgs | 如视 Five SDK</title><meta name="description" content="Documentation for 如视 Five SDK"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><script async src="../assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">如视 Five SDK</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="../modules/five.html">five</a></li><li><a href="" aria-current="page">PanoramaControllerCustomInitArgs</a></li></ul><h1>Interface PanoramaControllerCustomInitArgs</h1></div><div class="tsd-signature"><span class="tsd-signature-keyword">interface</span> <span class="tsd-kind-interface">PanoramaControllerCustomInitArgs</span> <span class="tsd-signature-symbol">{</span><br/>    <a class="tsd-kind-property" href="#adjustpanocirclemeshpositionbasedonmodel">adjustPanoCircleMeshPositionBasedOnModel</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#aerialobserverminheight">aerialObserverMinHeight</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#defaultfov">defaultFov</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#defaultlatitude">defaultLatitude</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#flyeffectusedepthbuffer">flyEffectUseDepthBuffer</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#intersectmeshcreator">intersectMeshCreator</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-symbol">()</span> <span class="tsd-signature-symbol">=&gt;</span> <a href="five.IntersectMeshInterface.html" class="tsd-signature-type tsd-kind-interface">IntersectMeshInterface</a><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#maxaccessibledistance">maxAccessibleDistance</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#maxfov">maxFov</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#maxlatitude">maxLatitude</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span> <span class="tsd-signature-symbol">|</span> (<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">fov</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <span class="tsd-signature-type">number</span>)<span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#minfov">minFov</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#minlatitude">minLatitude</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span> <span class="tsd-signature-symbol">|</span> (<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">fov</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <span class="tsd-signature-type">number</span>)<span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#movespeed">moveSpeed</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#panocirclemeshcreator">panoCircleMeshCreator</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-symbol">(</span><br/>        <span class="tsd-kind-parameter">observer</span><span class="tsd-signature-symbol">:</span> <a href="five.WorkObserver.html" class="tsd-signature-type tsd-kind-interface">WorkObserver</a><span class="tsd-signature-symbol">,</span><br/>        <span class="tsd-kind-parameter">options</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{</span> <span class="tsd-kind-property">aerialObserverMinHeight</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span> <span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">,</span><br/>    <span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <a href="five.PanoCircleMeshInterface.html" class="tsd-signature-type tsd-kind-interface">PanoCircleMeshInterface</a><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#panotaptriggerradius">panoTapTriggerRadius</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#tileappearduration">tileAppearDuration</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#tilelevelforfov">tileLevelForFov</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">false</span> <span class="tsd-signature-symbol">|</span> (<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">fov</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">,</span> <span class="tsd-kind-parameter">viewSize</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Vector2</span><span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <span class="tsd-signature-type">number</span>)<span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#tilemaxrequest">tileMaxRequest</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/><span class="tsd-signature-symbol">}</span></div><section class="tsd-panel tsd-hierarchy" data-refl="3245"><h4>Hierarchy (<a href="../hierarchy.html#five.PanoramaControllerCustomInitArgs">View Summary</a>)</h4><ul class="tsd-hierarchy"><li class="tsd-hierarchy-item"><a href="five.PanoramaLikeControllerCustomInitArgs.html" class="tsd-signature-type tsd-kind-interface">PanoramaLikeControllerCustomInitArgs</a><ul class="tsd-hierarchy"><li class="tsd-hierarchy-item"><span class="tsd-hierarchy-target">PanoramaControllerCustomInitArgs</span></li></ul></li></ul></section><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:67</li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h5 class="tsd-index-heading uppercase">Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="#adjustpanocirclemeshpositionbasedonmodel" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>adjust<wbr/>Pano<wbr/>Circle<wbr/>Mesh<wbr/>Position<wbr/>Based<wbr/>On<wbr/>Model?</span></a>
1
+ <!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>PanoramaControllerCustomInitArgs | 如视 Five SDK</title><meta name="description" content="Documentation for 如视 Five SDK"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><script async src="../assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">如视 Five SDK</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="../modules/five.html">five</a></li><li><a href="" aria-current="page">PanoramaControllerCustomInitArgs</a></li></ul><h1>Interface PanoramaControllerCustomInitArgs</h1></div><div class="tsd-signature"><span class="tsd-signature-keyword">interface</span> <span class="tsd-kind-interface">PanoramaControllerCustomInitArgs</span> <span class="tsd-signature-symbol">{</span><br/>    <a class="tsd-kind-property" href="#adjustpanocirclemeshpositionbasedonmodel">adjustPanoCircleMeshPositionBasedOnModel</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#aerialobserverminheight">aerialObserverMinHeight</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#defaultfov">defaultFov</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#defaultlatitude">defaultLatitude</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#flyeffectusedepthbuffer">flyEffectUseDepthBuffer</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#intersectmeshcreator">intersectMeshCreator</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-symbol">()</span> <span class="tsd-signature-symbol">=&gt;</span> <a href="five.IntersectMeshInterface.html" class="tsd-signature-type tsd-kind-interface">IntersectMeshInterface</a><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#maxaccessibledistance">maxAccessibleDistance</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#maxfov">maxFov</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#maxlatitude">maxLatitude</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span> <span class="tsd-signature-symbol">|</span> (<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">fov</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <span class="tsd-signature-type">number</span>)<span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#minfov">minFov</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#minlatitude">minLatitude</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span> <span class="tsd-signature-symbol">|</span> (<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">fov</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <span class="tsd-signature-type">number</span>)<span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#movespeed">moveSpeed</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#panocirclemeshcreator">panoCircleMeshCreator</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-symbol">(</span><br/>        <span class="tsd-kind-parameter">observer</span><span class="tsd-signature-symbol">:</span> <a href="five.WorkObserver.html" class="tsd-signature-type tsd-kind-interface">WorkObserver</a><span class="tsd-signature-symbol">,</span><br/>        <span class="tsd-kind-parameter">options</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{</span> <span class="tsd-kind-property">aerialObserverMinHeight</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span> <span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">,</span><br/>    <span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <a href="five.PanoCircleMeshInterface.html" class="tsd-signature-type tsd-kind-interface">PanoCircleMeshInterface</a><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#panotaptriggerradius">panoTapTriggerRadius</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#tileappearduration">tileAppearDuration</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#tilelevelforfov">tileLevelForFov</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">false</span> <span class="tsd-signature-symbol">|</span> (<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">fov</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">,</span> <span class="tsd-kind-parameter">viewSize</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Vector2</span><span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <span class="tsd-signature-type">number</span>)<span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#tilemaxrequest">tileMaxRequest</a><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/><span class="tsd-signature-symbol">}</span></div><section class="tsd-panel tsd-hierarchy" data-refl="3245"><h4>Hierarchy (<a href="../hierarchy.html#five.PanoramaControllerCustomInitArgs">View Summary</a>)</h4><ul class="tsd-hierarchy"><li class="tsd-hierarchy-item"><a href="five.PanoramaLikeControllerCustomInitArgs.html" class="tsd-signature-type tsd-kind-interface">PanoramaLikeControllerCustomInitArgs</a><ul class="tsd-hierarchy"><li class="tsd-hierarchy-item"><span class="tsd-hierarchy-target">PanoramaControllerCustomInitArgs</span></li></ul></li></ul></section><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:66</li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h5 class="tsd-index-heading uppercase">Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="#adjustpanocirclemeshpositionbasedonmodel" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>adjust<wbr/>Pano<wbr/>Circle<wbr/>Mesh<wbr/>Position<wbr/>Based<wbr/>On<wbr/>Model?</span></a>
2
2
  <a href="#aerialobserverminheight" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>aerial<wbr/>Observer<wbr/>Min<wbr/>Height?</span></a>
3
3
  <a href="#defaultfov" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>default<wbr/>Fov?</span></a>
4
4
  <a href="#defaultlatitude" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>default<wbr/>Latitude?</span></a>
@@ -16,26 +16,26 @@
16
16
  <a href="#tilelevelforfov" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tile<wbr/>Level<wbr/>For<wbr/>Fov?</span></a>
17
17
  <a href="#tilemaxrequest" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tile<wbr/>Max<wbr/>Request?</span></a>
18
18
  </div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Properties</h2></summary><section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="adjustpanocirclemeshpositionbasedonmodel"><code class="tsd-tag">Optional</code><span>adjust<wbr/>Pano<wbr/>Circle<wbr/>Mesh<wbr/>Position<wbr/>Based<wbr/>On<wbr/>Model</span><a href="#adjustpanocirclemeshpositionbasedonmodel" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">adjustPanoCircleMeshPositionBasedOnModel</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">boolean</span></div><div class="tsd-comment tsd-typography"><p>基于模型调整 地面观察点 的位置</p>
19
- </div><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:84</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="aerialobserverminheight"><code class="tsd-tag">Optional</code><span>aerial<wbr/>Observer<wbr/>Min<wbr/>Height</span><a href="#aerialobserverminheight" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">aerialObserverMinHeight</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>航拍点最小高度</p>
19
+ </div><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:83</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="aerialobserverminheight"><code class="tsd-tag">Optional</code><span>aerial<wbr/>Observer<wbr/>Min<wbr/>Height</span><a href="#aerialobserverminheight" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">aerialObserverMinHeight</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>航拍点最小高度</p>
20
20
  </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaLikeControllerCustomInitArgs.html">PanoramaLikeControllerCustomInitArgs</a>.<a href="five.PanoramaLikeControllerCustomInitArgs.html#aerialobserverminheight">aerialObserverMinHeight</a></p><ul><li>Defined in lib/five/controllers/panoramaLike.ts:38</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="defaultfov"><code class="tsd-tag">Optional</code><span>default<wbr/>Fov</span><a href="#defaultfov" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">defaultFov</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>默认相机可视角度(垂直),可作为 <code>zoom</code></p>
21
21
  </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaLikeControllerCustomInitArgs.html">PanoramaLikeControllerCustomInitArgs</a>.<a href="five.PanoramaLikeControllerCustomInitArgs.html#defaultfov">defaultFov</a></p><ul><li>Defined in lib/five/controllers/panoramaLike.ts:24</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="defaultlatitude"><code class="tsd-tag">Optional</code><span>default<wbr/>Latitude</span><a href="#defaultlatitude" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">defaultLatitude</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>默认相机俯仰角</p>
22
22
  </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaLikeControllerCustomInitArgs.html">PanoramaLikeControllerCustomInitArgs</a>.<a href="five.PanoramaLikeControllerCustomInitArgs.html#defaultlatitude">defaultLatitude</a></p><ul><li>Defined in lib/five/controllers/panoramaLike.ts:18</li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="flyeffectusedepthbuffer"><code class="tsd-tag">Optional</code><span>fly<wbr/>Effect<wbr/>Use<wbr/>Depth<wbr/>Buffer</span><a href="#flyeffectusedepthbuffer" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">flyEffectUseDepthBuffer</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">boolean</span></div><div class="tsd-comment tsd-typography"><p>是否使用深度信息干预全景图着色</p>
23
- </div><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:101</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="intersectmeshcreator"><code class="tsd-tag">Optional</code><span>intersect<wbr/>Mesh<wbr/>Creator</span><a href="#intersectmeshcreator" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">intersectMeshCreator</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-symbol">()</span> <span class="tsd-signature-symbol">=&gt;</span> <a href="five.IntersectMeshInterface.html" class="tsd-signature-type tsd-kind-interface">IntersectMeshInterface</a></div><div class="tsd-comment tsd-typography"><p>鼠标焦点环自定义创建器</p>
23
+ </div><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:100</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="intersectmeshcreator"><code class="tsd-tag">Optional</code><span>intersect<wbr/>Mesh<wbr/>Creator</span><a href="#intersectmeshcreator" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">intersectMeshCreator</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-symbol">()</span> <span class="tsd-signature-symbol">=&gt;</span> <a href="five.IntersectMeshInterface.html" class="tsd-signature-type tsd-kind-interface">IntersectMeshInterface</a></div><div class="tsd-comment tsd-typography"><p>鼠标焦点环自定义创建器</p>
24
24
  </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaLikeControllerCustomInitArgs.html">PanoramaLikeControllerCustomInitArgs</a>.<a href="five.PanoramaLikeControllerCustomInitArgs.html#intersectmeshcreator">intersectMeshCreator</a></p><ul><li>Defined in lib/five/controllers/panoramaLike.ts:36</li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="maxaccessibledistance"><code class="tsd-tag">Optional</code><span>max<wbr/>Accessible<wbr/>Distance</span><a href="#maxaccessibledistance" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">maxAccessibleDistance</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>最远可移动观察点距离</p>
25
- </div><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:70</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="maxfov"><code class="tsd-tag">Optional</code><span>max<wbr/>Fov</span><a href="#maxfov" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">maxFov</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>最大默认相机可视角度(垂直)</p>
25
+ </div><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:69</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="maxfov"><code class="tsd-tag">Optional</code><span>max<wbr/>Fov</span><a href="#maxfov" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">maxFov</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>最大默认相机可视角度(垂直)</p>
26
26
  </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaLikeControllerCustomInitArgs.html">PanoramaLikeControllerCustomInitArgs</a>.<a href="five.PanoramaLikeControllerCustomInitArgs.html#maxfov">maxFov</a></p><ul><li>Defined in lib/five/controllers/panoramaLike.ts:26</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="maxlatitude"><code class="tsd-tag">Optional</code><span>max<wbr/>Latitude</span><a href="#maxlatitude" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">maxLatitude</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span> <span class="tsd-signature-symbol">|</span> (<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">fov</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <span class="tsd-signature-type">number</span>)</div><div class="tsd-comment tsd-typography"><p>最大相机俯仰角</p>
27
27
  </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaLikeControllerCustomInitArgs.html">PanoramaLikeControllerCustomInitArgs</a>.<a href="five.PanoramaLikeControllerCustomInitArgs.html#maxlatitude">maxLatitude</a></p><ul><li>Defined in lib/five/controllers/panoramaLike.ts:20</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="minfov"><code class="tsd-tag">Optional</code><span>min<wbr/>Fov</span><a href="#minfov" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">minFov</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>最小默认相机可视角度(垂直)</p>
28
28
  </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaLikeControllerCustomInitArgs.html">PanoramaLikeControllerCustomInitArgs</a>.<a href="five.PanoramaLikeControllerCustomInitArgs.html#minfov">minFov</a></p><ul><li>Defined in lib/five/controllers/panoramaLike.ts:28</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="minlatitude"><code class="tsd-tag">Optional</code><span>min<wbr/>Latitude</span><a href="#minlatitude" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">minLatitude</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span> <span class="tsd-signature-symbol">|</span> (<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">fov</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <span class="tsd-signature-type">number</span>)</div><div class="tsd-comment tsd-typography"><p>最小相机俯仰角</p>
29
29
  </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaLikeControllerCustomInitArgs.html">PanoramaLikeControllerCustomInitArgs</a>.<a href="five.PanoramaLikeControllerCustomInitArgs.html#minlatitude">minLatitude</a></p><ul><li>Defined in lib/five/controllers/panoramaLike.ts:22</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="movespeed"><code class="tsd-tag">Optional</code><span>move<wbr/>Speed</span><a href="#movespeed" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">moveSpeed</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>点位间移动动画速度 单位 m/s</p>
30
30
  </div><div class="tsd-comment tsd-typography"><div class="tsd-tag-description"><h4 class="tsd-anchor-link" id="description">Description<a href="#description" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>这边设置的是速度,整体耗时会通过距离除速度计算得到</p>
31
31
  </div></div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaLikeControllerCustomInitArgs.html">PanoramaLikeControllerCustomInitArgs</a>.<a href="five.PanoramaLikeControllerCustomInitArgs.html#movespeed">moveSpeed</a></p><ul><li>Defined in lib/five/controllers/panoramaLike.ts:34</li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="panocirclemeshcreator"><code class="tsd-tag">Optional</code><span>pano<wbr/>Circle<wbr/>Mesh<wbr/>Creator</span><a href="#panocirclemeshcreator" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">panoCircleMeshCreator</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-symbol">(</span><br/>    <span class="tsd-kind-parameter">observer</span><span class="tsd-signature-symbol">:</span> <a href="five.WorkObserver.html" class="tsd-signature-type tsd-kind-interface">WorkObserver</a><span class="tsd-signature-symbol">,</span><br/>    <span class="tsd-kind-parameter">options</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{</span> <span class="tsd-kind-property">aerialObserverMinHeight</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span> <span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">,</span><br/><span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <a href="five.PanoCircleMeshInterface.html" class="tsd-signature-type tsd-kind-interface">PanoCircleMeshInterface</a></div><div class="tsd-comment tsd-typography"><p>地面观察点标识自定义创建器</p>
32
- </div><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:81</li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="panotaptriggerradius"><code class="tsd-tag">Optional</code><span>pano<wbr/>Tap<wbr/>Trigger<wbr/>Radius</span><a href="#panotaptriggerradius" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">panoTapTriggerRadius</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>点击地面观察点标识的判定范围</p>
32
+ </div><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:80</li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="panotaptriggerradius"><code class="tsd-tag">Optional</code><span>pano<wbr/>Tap<wbr/>Trigger<wbr/>Radius</span><a href="#panotaptriggerradius" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">panoTapTriggerRadius</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>点击地面观察点标识的判定范围</p>
33
33
  </div><div class="tsd-comment tsd-typography"><div class="tsd-tag-description"><h4 class="tsd-anchor-link" id="description-1">Description<a href="#description-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>如果在判定范围内则确定去到目标点,
34
34
  否则寻找点击位置方向最适合的点(可能会走到一个离相机更近的点)。</p>
35
- </div></div><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:78</li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="tileappearduration"><code class="tsd-tag">Optional</code><span>tile<wbr/>Appear<wbr/>Duration</span><a href="#tileappearduration" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">tileAppearDuration</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>全景进入渐变时长 单位秒</p>
36
- </div><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:95</li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="tilelevelforfov"><code class="tsd-tag">Optional</code><span>tile<wbr/>Level<wbr/>For<wbr/>Fov</span><a href="#tilelevelforfov" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">tileLevelForFov</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">false</span> <span class="tsd-signature-symbol">|</span> (<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">fov</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">,</span> <span class="tsd-kind-parameter">viewSize</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Vector2</span><span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <span class="tsd-signature-type">number</span>)</div><div class="tsd-comment tsd-typography"><p>全景瓦片登记</p>
35
+ </div></div><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:77</li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="tileappearduration"><code class="tsd-tag">Optional</code><span>tile<wbr/>Appear<wbr/>Duration</span><a href="#tileappearduration" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">tileAppearDuration</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>全景进入渐变时长 单位秒</p>
36
+ </div><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:94</li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="tilelevelforfov"><code class="tsd-tag">Optional</code><span>tile<wbr/>Level<wbr/>For<wbr/>Fov</span><a href="#tilelevelforfov" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">tileLevelForFov</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">false</span> <span class="tsd-signature-symbol">|</span> (<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">fov</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">,</span> <span class="tsd-kind-parameter">viewSize</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Vector2</span><span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <span class="tsd-signature-type">number</span>)</div><div class="tsd-comment tsd-typography"><p>全景瓦片登记</p>
37
37
  </div><div class="tsd-comment tsd-typography"><div class="tsd-tag-param"><h4 class="tsd-anchor-link" id="param-fov">Param: fov<a href="#param-fov" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>当前 fov</p>
38
38
  </div><div class="tsd-tag-param"><h4 class="tsd-anchor-link" id="param-viewsize">Param: viewSize<a href="#param-viewsize" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>当前绘制区域大小</p>
39
39
  </div><div class="tsd-tag-returns"><h4 class="tsd-anchor-link" id="returns">Returns<a href="#returns" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>返回瓦片等级</p>
40
- </div></div><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:92</li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="tilemaxrequest"><code class="tsd-tag">Optional</code><span>tile<wbr/>Max<wbr/>Request</span><a href="#tilemaxrequest" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">tileMaxRequest</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>全景瓦片并发数</p>
41
- </div><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:98</li></ul></aside></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Properties</summary><div><a href="#adjustpanocirclemeshpositionbasedonmodel"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>adjust<wbr/>Pano<wbr/>Circle<wbr/>Mesh<wbr/>Position<wbr/>Based<wbr/>On<wbr/>Model</span></a><a href="#aerialobserverminheight" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>aerial<wbr/>Observer<wbr/>Min<wbr/>Height</span></a><a href="#defaultfov" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>default<wbr/>Fov</span></a><a href="#defaultlatitude" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>default<wbr/>Latitude</span></a><a href="#flyeffectusedepthbuffer"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>fly<wbr/>Effect<wbr/>Use<wbr/>Depth<wbr/>Buffer</span></a><a href="#intersectmeshcreator" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>intersect<wbr/>Mesh<wbr/>Creator</span></a><a href="#maxaccessibledistance"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>max<wbr/>Accessible<wbr/>Distance</span></a><a href="#maxfov" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>max<wbr/>Fov</span></a><a href="#maxlatitude" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>max<wbr/>Latitude</span></a><a href="#minfov" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>min<wbr/>Fov</span></a><a href="#minlatitude" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>min<wbr/>Latitude</span></a><a href="#movespeed" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>move<wbr/>Speed</span></a><a href="#panocirclemeshcreator"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>pano<wbr/>Circle<wbr/>Mesh<wbr/>Creator</span></a><a href="#panotaptriggerradius"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>pano<wbr/>Tap<wbr/>Trigger<wbr/>Radius</span></a><a href="#tileappearduration"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tile<wbr/>Appear<wbr/>Duration</span></a><a href="#tilelevelforfov"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tile<wbr/>Level<wbr/>For<wbr/>Fov</span></a><a href="#tilemaxrequest"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tile<wbr/>Max<wbr/>Request</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html">如视 Five SDK</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
40
+ </div></div><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:91</li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="tilemaxrequest"><code class="tsd-tag">Optional</code><span>tile<wbr/>Max<wbr/>Request</span><a href="#tilemaxrequest" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">tileMaxRequest</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>全景瓦片并发数</p>
41
+ </div><aside class="tsd-sources"><ul><li>Defined in lib/five/controllers/panorama.ts:97</li></ul></aside></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Properties</summary><div><a href="#adjustpanocirclemeshpositionbasedonmodel"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>adjust<wbr/>Pano<wbr/>Circle<wbr/>Mesh<wbr/>Position<wbr/>Based<wbr/>On<wbr/>Model</span></a><a href="#aerialobserverminheight" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>aerial<wbr/>Observer<wbr/>Min<wbr/>Height</span></a><a href="#defaultfov" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>default<wbr/>Fov</span></a><a href="#defaultlatitude" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>default<wbr/>Latitude</span></a><a href="#flyeffectusedepthbuffer"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>fly<wbr/>Effect<wbr/>Use<wbr/>Depth<wbr/>Buffer</span></a><a href="#intersectmeshcreator" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>intersect<wbr/>Mesh<wbr/>Creator</span></a><a href="#maxaccessibledistance"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>max<wbr/>Accessible<wbr/>Distance</span></a><a href="#maxfov" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>max<wbr/>Fov</span></a><a href="#maxlatitude" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>max<wbr/>Latitude</span></a><a href="#minfov" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>min<wbr/>Fov</span></a><a href="#minlatitude" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>min<wbr/>Latitude</span></a><a href="#movespeed" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>move<wbr/>Speed</span></a><a href="#panocirclemeshcreator"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>pano<wbr/>Circle<wbr/>Mesh<wbr/>Creator</span></a><a href="#panotaptriggerradius"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>pano<wbr/>Tap<wbr/>Trigger<wbr/>Radius</span></a><a href="#tileappearduration"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tile<wbr/>Appear<wbr/>Duration</span></a><a href="#tilelevelforfov"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tile<wbr/>Level<wbr/>For<wbr/>Fov</span></a><a href="#tilemaxrequest"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tile<wbr/>Max<wbr/>Request</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html">如视 Five SDK</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
@@ -14,24 +14,24 @@
14
14
  <a href="#tilelevelforfov" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tile<wbr/>Level<wbr/>For<wbr/>Fov?</span></a>
15
15
  <a href="#tilemaxrequest" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tile<wbr/>Max<wbr/>Request?</span></a>
16
16
  </div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Properties</h2></summary><section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="adjustpanocirclemeshpositionbasedonmodel"><code class="tsd-tag">Optional</code><span>adjust<wbr/>Pano<wbr/>Circle<wbr/>Mesh<wbr/>Position<wbr/>Based<wbr/>On<wbr/>Model</span><a href="#adjustpanocirclemeshpositionbasedonmodel" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">adjustPanoCircleMeshPositionBasedOnModel</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">boolean</span></div><div class="tsd-comment tsd-typography"><p>基于模型调整 地面观察点 的位置</p>
17
- </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaControllerCustomInitArgs.html">PanoramaControllerCustomInitArgs</a>.<a href="five.PanoramaControllerCustomInitArgs.html#adjustpanocirclemeshpositionbasedonmodel">adjustPanoCircleMeshPositionBasedOnModel</a></p><ul><li>Defined in lib/five/controllers/panorama.ts:84</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="aerialobserverminheight"><code class="tsd-tag">Optional</code><span>aerial<wbr/>Observer<wbr/>Min<wbr/>Height</span><a href="#aerialobserverminheight" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">aerialObserverMinHeight</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>航拍点最小高度</p>
17
+ </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaControllerCustomInitArgs.html">PanoramaControllerCustomInitArgs</a>.<a href="five.PanoramaControllerCustomInitArgs.html#adjustpanocirclemeshpositionbasedonmodel">adjustPanoCircleMeshPositionBasedOnModel</a></p><ul><li>Defined in lib/five/controllers/panorama.ts:83</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="aerialobserverminheight"><code class="tsd-tag">Optional</code><span>aerial<wbr/>Observer<wbr/>Min<wbr/>Height</span><a href="#aerialobserverminheight" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">aerialObserverMinHeight</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>航拍点最小高度</p>
18
18
  </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaLikeControllerCustomInitArgs.html">PanoramaLikeControllerCustomInitArgs</a>.<a href="five.PanoramaLikeControllerCustomInitArgs.html#aerialobserverminheight">aerialObserverMinHeight</a></p><ul><li>Defined in lib/five/controllers/panoramaLike.ts:38</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="defaultfov"><code class="tsd-tag">Optional</code><span>default<wbr/>Fov</span><a href="#defaultfov" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">defaultFov</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>默认相机可视角度(垂直),可作为 <code>zoom</code></p>
19
19
  </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaLikeControllerCustomInitArgs.html">PanoramaLikeControllerCustomInitArgs</a>.<a href="five.PanoramaLikeControllerCustomInitArgs.html#defaultfov">defaultFov</a></p><ul><li>Defined in lib/five/controllers/panoramaLike.ts:24</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="defaultlatitude"><code class="tsd-tag">Optional</code><span>default<wbr/>Latitude</span><a href="#defaultlatitude" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">defaultLatitude</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>默认相机俯仰角</p>
20
20
  </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaLikeControllerCustomInitArgs.html">PanoramaLikeControllerCustomInitArgs</a>.<a href="five.PanoramaLikeControllerCustomInitArgs.html#defaultlatitude">defaultLatitude</a></p><ul><li>Defined in lib/five/controllers/panoramaLike.ts:18</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="flyeffectusedepthbuffer"><code class="tsd-tag">Optional</code><span>fly<wbr/>Effect<wbr/>Use<wbr/>Depth<wbr/>Buffer</span><a href="#flyeffectusedepthbuffer" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">flyEffectUseDepthBuffer</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">boolean</span></div><div class="tsd-comment tsd-typography"><p>是否使用深度信息干预全景图着色</p>
21
- </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaControllerCustomInitArgs.html">PanoramaControllerCustomInitArgs</a>.<a href="five.PanoramaControllerCustomInitArgs.html#flyeffectusedepthbuffer">flyEffectUseDepthBuffer</a></p><ul><li>Defined in lib/five/controllers/panorama.ts:101</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="intersectmeshcreator"><code class="tsd-tag">Optional</code><span>intersect<wbr/>Mesh<wbr/>Creator</span><a href="#intersectmeshcreator" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">intersectMeshCreator</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-symbol">()</span> <span class="tsd-signature-symbol">=&gt;</span> <a href="five.IntersectMeshInterface.html" class="tsd-signature-type tsd-kind-interface">IntersectMeshInterface</a></div><div class="tsd-comment tsd-typography"><p>鼠标焦点环自定义创建器</p>
21
+ </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaControllerCustomInitArgs.html">PanoramaControllerCustomInitArgs</a>.<a href="five.PanoramaControllerCustomInitArgs.html#flyeffectusedepthbuffer">flyEffectUseDepthBuffer</a></p><ul><li>Defined in lib/five/controllers/panorama.ts:100</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="intersectmeshcreator"><code class="tsd-tag">Optional</code><span>intersect<wbr/>Mesh<wbr/>Creator</span><a href="#intersectmeshcreator" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">intersectMeshCreator</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-symbol">()</span> <span class="tsd-signature-symbol">=&gt;</span> <a href="five.IntersectMeshInterface.html" class="tsd-signature-type tsd-kind-interface">IntersectMeshInterface</a></div><div class="tsd-comment tsd-typography"><p>鼠标焦点环自定义创建器</p>
22
22
  </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaLikeControllerCustomInitArgs.html">PanoramaLikeControllerCustomInitArgs</a>.<a href="five.PanoramaLikeControllerCustomInitArgs.html#intersectmeshcreator">intersectMeshCreator</a></p><ul><li>Defined in lib/five/controllers/panoramaLike.ts:36</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="maxaccessibledistance"><code class="tsd-tag">Optional</code><span>max<wbr/>Accessible<wbr/>Distance</span><a href="#maxaccessibledistance" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">maxAccessibleDistance</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>最远可移动观察点距离</p>
23
- </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaControllerCustomInitArgs.html">PanoramaControllerCustomInitArgs</a>.<a href="five.PanoramaControllerCustomInitArgs.html#maxaccessibledistance">maxAccessibleDistance</a></p><ul><li>Defined in lib/five/controllers/panorama.ts:70</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="maxfov"><code class="tsd-tag">Optional</code><span>max<wbr/>Fov</span><a href="#maxfov" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">maxFov</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>最大默认相机可视角度(垂直)</p>
23
+ </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaControllerCustomInitArgs.html">PanoramaControllerCustomInitArgs</a>.<a href="five.PanoramaControllerCustomInitArgs.html#maxaccessibledistance">maxAccessibleDistance</a></p><ul><li>Defined in lib/five/controllers/panorama.ts:69</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="maxfov"><code class="tsd-tag">Optional</code><span>max<wbr/>Fov</span><a href="#maxfov" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">maxFov</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>最大默认相机可视角度(垂直)</p>
24
24
  </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaLikeControllerCustomInitArgs.html">PanoramaLikeControllerCustomInitArgs</a>.<a href="five.PanoramaLikeControllerCustomInitArgs.html#maxfov">maxFov</a></p><ul><li>Defined in lib/five/controllers/panoramaLike.ts:26</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="minfov"><code class="tsd-tag">Optional</code><span>min<wbr/>Fov</span><a href="#minfov" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">minFov</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>最小默认相机可视角度(垂直)</p>
25
25
  </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaLikeControllerCustomInitArgs.html">PanoramaLikeControllerCustomInitArgs</a>.<a href="five.PanoramaLikeControllerCustomInitArgs.html#minfov">minFov</a></p><ul><li>Defined in lib/five/controllers/panoramaLike.ts:28</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="movespeed"><code class="tsd-tag">Optional</code><span>move<wbr/>Speed</span><a href="#movespeed" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">moveSpeed</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>点位间移动动画速度 单位 m/s</p>
26
26
  </div><div class="tsd-comment tsd-typography"><div class="tsd-tag-description"><h4 class="tsd-anchor-link" id="description">Description<a href="#description" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>这边设置的是速度,整体耗时会通过距离除速度计算得到</p>
27
27
  </div></div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaLikeControllerCustomInitArgs.html">PanoramaLikeControllerCustomInitArgs</a>.<a href="five.PanoramaLikeControllerCustomInitArgs.html#movespeed">moveSpeed</a></p><ul><li>Defined in lib/five/controllers/panoramaLike.ts:34</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="panocirclemeshcreator"><code class="tsd-tag">Optional</code><span>pano<wbr/>Circle<wbr/>Mesh<wbr/>Creator</span><a href="#panocirclemeshcreator" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">panoCircleMeshCreator</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-symbol">(</span><br/>    <span class="tsd-kind-parameter">observer</span><span class="tsd-signature-symbol">:</span> <a href="five.WorkObserver.html" class="tsd-signature-type tsd-kind-interface">WorkObserver</a><span class="tsd-signature-symbol">,</span><br/>    <span class="tsd-kind-parameter">options</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{</span> <span class="tsd-kind-property">aerialObserverMinHeight</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span> <span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">,</span><br/><span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <a href="five.PanoCircleMeshInterface.html" class="tsd-signature-type tsd-kind-interface">PanoCircleMeshInterface</a></div><div class="tsd-comment tsd-typography"><p>地面观察点标识自定义创建器</p>
28
- </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaControllerCustomInitArgs.html">PanoramaControllerCustomInitArgs</a>.<a href="five.PanoramaControllerCustomInitArgs.html#panocirclemeshcreator">panoCircleMeshCreator</a></p><ul><li>Defined in lib/five/controllers/panorama.ts:81</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="panotaptriggerradius"><code class="tsd-tag">Optional</code><span>pano<wbr/>Tap<wbr/>Trigger<wbr/>Radius</span><a href="#panotaptriggerradius" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">panoTapTriggerRadius</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>点击地面观察点标识的判定范围</p>
28
+ </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaControllerCustomInitArgs.html">PanoramaControllerCustomInitArgs</a>.<a href="five.PanoramaControllerCustomInitArgs.html#panocirclemeshcreator">panoCircleMeshCreator</a></p><ul><li>Defined in lib/five/controllers/panorama.ts:80</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="panotaptriggerradius"><code class="tsd-tag">Optional</code><span>pano<wbr/>Tap<wbr/>Trigger<wbr/>Radius</span><a href="#panotaptriggerradius" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">panoTapTriggerRadius</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>点击地面观察点标识的判定范围</p>
29
29
  </div><div class="tsd-comment tsd-typography"><div class="tsd-tag-description"><h4 class="tsd-anchor-link" id="description-1">Description<a href="#description-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>如果在判定范围内则确定去到目标点,
30
30
  否则寻找点击位置方向最适合的点(可能会走到一个离相机更近的点)。</p>
31
- </div></div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaControllerCustomInitArgs.html">PanoramaControllerCustomInitArgs</a>.<a href="five.PanoramaControllerCustomInitArgs.html#panotaptriggerradius">panoTapTriggerRadius</a></p><ul><li>Defined in lib/five/controllers/panorama.ts:78</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="tileappearduration"><code class="tsd-tag">Optional</code><span>tile<wbr/>Appear<wbr/>Duration</span><a href="#tileappearduration" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">tileAppearDuration</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>全景进入渐变时长 单位秒</p>
32
- </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaControllerCustomInitArgs.html">PanoramaControllerCustomInitArgs</a>.<a href="five.PanoramaControllerCustomInitArgs.html#tileappearduration">tileAppearDuration</a></p><ul><li>Defined in lib/five/controllers/panorama.ts:95</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="tilelevelforfov"><code class="tsd-tag">Optional</code><span>tile<wbr/>Level<wbr/>For<wbr/>Fov</span><a href="#tilelevelforfov" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">tileLevelForFov</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">false</span> <span class="tsd-signature-symbol">|</span> (<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">fov</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">,</span> <span class="tsd-kind-parameter">viewSize</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Vector2</span><span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <span class="tsd-signature-type">number</span>)</div><div class="tsd-comment tsd-typography"><p>全景瓦片登记</p>
31
+ </div></div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaControllerCustomInitArgs.html">PanoramaControllerCustomInitArgs</a>.<a href="five.PanoramaControllerCustomInitArgs.html#panotaptriggerradius">panoTapTriggerRadius</a></p><ul><li>Defined in lib/five/controllers/panorama.ts:77</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="tileappearduration"><code class="tsd-tag">Optional</code><span>tile<wbr/>Appear<wbr/>Duration</span><a href="#tileappearduration" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">tileAppearDuration</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>全景进入渐变时长 单位秒</p>
32
+ </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaControllerCustomInitArgs.html">PanoramaControllerCustomInitArgs</a>.<a href="five.PanoramaControllerCustomInitArgs.html#tileappearduration">tileAppearDuration</a></p><ul><li>Defined in lib/five/controllers/panorama.ts:94</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="tilelevelforfov"><code class="tsd-tag">Optional</code><span>tile<wbr/>Level<wbr/>For<wbr/>Fov</span><a href="#tilelevelforfov" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">tileLevelForFov</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">false</span> <span class="tsd-signature-symbol">|</span> (<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">fov</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">,</span> <span class="tsd-kind-parameter">viewSize</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Vector2</span><span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <span class="tsd-signature-type">number</span>)</div><div class="tsd-comment tsd-typography"><p>全景瓦片登记</p>
33
33
  </div><div class="tsd-comment tsd-typography"><div class="tsd-tag-param"><h4 class="tsd-anchor-link" id="param-fov">Param: fov<a href="#param-fov" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>当前 fov</p>
34
34
  </div><div class="tsd-tag-param"><h4 class="tsd-anchor-link" id="param-viewsize">Param: viewSize<a href="#param-viewsize" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>当前绘制区域大小</p>
35
35
  </div><div class="tsd-tag-returns"><h4 class="tsd-anchor-link" id="returns">Returns<a href="#returns" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>返回瓦片等级</p>
36
- </div></div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaControllerCustomInitArgs.html">PanoramaControllerCustomInitArgs</a>.<a href="five.PanoramaControllerCustomInitArgs.html#tilelevelforfov">tileLevelForFov</a></p><ul><li>Defined in lib/five/controllers/panorama.ts:92</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="tilemaxrequest"><code class="tsd-tag">Optional</code><span>tile<wbr/>Max<wbr/>Request</span><a href="#tilemaxrequest" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">tileMaxRequest</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>全景瓦片并发数</p>
37
- </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaControllerCustomInitArgs.html">PanoramaControllerCustomInitArgs</a>.<a href="five.PanoramaControllerCustomInitArgs.html#tilemaxrequest">tileMaxRequest</a></p><ul><li>Defined in lib/five/controllers/panorama.ts:98</li></ul></aside></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Properties</summary><div><a href="#adjustpanocirclemeshpositionbasedonmodel" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>adjust<wbr/>Pano<wbr/>Circle<wbr/>Mesh<wbr/>Position<wbr/>Based<wbr/>On<wbr/>Model</span></a><a href="#aerialobserverminheight" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>aerial<wbr/>Observer<wbr/>Min<wbr/>Height</span></a><a href="#defaultfov" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>default<wbr/>Fov</span></a><a href="#defaultlatitude" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>default<wbr/>Latitude</span></a><a href="#flyeffectusedepthbuffer" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>fly<wbr/>Effect<wbr/>Use<wbr/>Depth<wbr/>Buffer</span></a><a href="#intersectmeshcreator" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>intersect<wbr/>Mesh<wbr/>Creator</span></a><a href="#maxaccessibledistance" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>max<wbr/>Accessible<wbr/>Distance</span></a><a href="#maxfov" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>max<wbr/>Fov</span></a><a href="#minfov" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>min<wbr/>Fov</span></a><a href="#movespeed" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>move<wbr/>Speed</span></a><a href="#panocirclemeshcreator" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>pano<wbr/>Circle<wbr/>Mesh<wbr/>Creator</span></a><a href="#panotaptriggerradius" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>pano<wbr/>Tap<wbr/>Trigger<wbr/>Radius</span></a><a href="#tileappearduration" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tile<wbr/>Appear<wbr/>Duration</span></a><a href="#tilelevelforfov" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tile<wbr/>Level<wbr/>For<wbr/>Fov</span></a><a href="#tilemaxrequest" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tile<wbr/>Max<wbr/>Request</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html">如视 Five SDK</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
36
+ </div></div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaControllerCustomInitArgs.html">PanoramaControllerCustomInitArgs</a>.<a href="five.PanoramaControllerCustomInitArgs.html#tilelevelforfov">tileLevelForFov</a></p><ul><li>Defined in lib/five/controllers/panorama.ts:91</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="tilemaxrequest"><code class="tsd-tag">Optional</code><span>tile<wbr/>Max<wbr/>Request</span><a href="#tilemaxrequest" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">tileMaxRequest</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><p>全景瓦片并发数</p>
37
+ </div><aside class="tsd-sources"><p>Inherited from <a href="five.PanoramaControllerCustomInitArgs.html">PanoramaControllerCustomInitArgs</a>.<a href="five.PanoramaControllerCustomInitArgs.html#tilemaxrequest">tileMaxRequest</a></p><ul><li>Defined in lib/five/controllers/panorama.ts:97</li></ul></aside></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Properties</summary><div><a href="#adjustpanocirclemeshpositionbasedonmodel" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>adjust<wbr/>Pano<wbr/>Circle<wbr/>Mesh<wbr/>Position<wbr/>Based<wbr/>On<wbr/>Model</span></a><a href="#aerialobserverminheight" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>aerial<wbr/>Observer<wbr/>Min<wbr/>Height</span></a><a href="#defaultfov" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>default<wbr/>Fov</span></a><a href="#defaultlatitude" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>default<wbr/>Latitude</span></a><a href="#flyeffectusedepthbuffer" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>fly<wbr/>Effect<wbr/>Use<wbr/>Depth<wbr/>Buffer</span></a><a href="#intersectmeshcreator" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>intersect<wbr/>Mesh<wbr/>Creator</span></a><a href="#maxaccessibledistance" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>max<wbr/>Accessible<wbr/>Distance</span></a><a href="#maxfov" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>max<wbr/>Fov</span></a><a href="#minfov" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>min<wbr/>Fov</span></a><a href="#movespeed" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>move<wbr/>Speed</span></a><a href="#panocirclemeshcreator" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>pano<wbr/>Circle<wbr/>Mesh<wbr/>Creator</span></a><a href="#panotaptriggerradius" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>pano<wbr/>Tap<wbr/>Trigger<wbr/>Radius</span></a><a href="#tileappearduration" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tile<wbr/>Appear<wbr/>Duration</span></a><a href="#tilelevelforfov" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tile<wbr/>Level<wbr/>For<wbr/>Fov</span></a><a href="#tilemaxrequest" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tile<wbr/>Max<wbr/>Request</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html">如视 Five SDK</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>