@@ -45,9 +45,9 @@ aroundPoint.start()
4545 - ` {Object} options ` :options
4646 - 返回值 ` aroundPoint `
4747
48- ``` json
49- //options(optional )
50- {
48+ ``` js
49+ // options(可选 )
50+ const config = {
5151 " heading" : 0 , // 偏移角度
5252 " pitch" : 0 , // 翻转角度
5353 " range" : 0 , // 距离
@@ -79,15 +79,15 @@ aroundView.start()
7979 - ` {Object} options ` :options
8080 - 返回值 ` aroundView `
8181
82- ``` json
83- //options(optional )
84- {
85- "heading" : 0 , //偏移角度
86- "pitch" : 0 , //俯仰角度
87- "roll" : 0 , //翻转角度
88- "duration" : 0 , //间隔,单位:秒,当此值大于0时,callback才会生效
89- "callback" : null , //完成回调函数
90- "context" : null //回调函数执行上下文
82+ ``` js
83+ // options(可选 )
84+ const options = {
85+ " heading" : 0 ,// 偏移角度
86+ " pitch" : 0 ,// 俯仰角度
87+ " roll" : 0 ,// 翻转角度
88+ " duration" : 0 ,// 间隔,单位:秒,当此值大于0时,callback才会生效
89+ " callback" : null ,// 完成回调函数
90+ " context" : null // 回调函数执行上下文
9191}
9292```
9393
@@ -114,12 +114,12 @@ flying.start()
114114 - ` {Object} options ` :options
115115 - 返回值 ` flying `
116116
117- ``` json
118- // 属性参数(optional )
119- {
120- "loop" : false , //是否循环,
121- "dwellTime" : 3 , //驻留时间
122- "callback" : null //回调函数
117+ ``` js
118+ // 属性参数(可选 )
119+ const options = {
120+ " loop" : false ,// 是否循环,
121+ " dwellTime" : 3 ,// 驻留时间
122+ " callback" : null // 回调函数
123123}
124124```
125125
@@ -158,7 +158,8 @@ flying.start()
158158let globeRotate = new DC.GlobeRotate (viewer, {
159159 duration: 5 ,
160160 speed: 1000 ,
161- callback : () => {},
161+ callback : () => {
162+ },
162163})
163164globeRotate .start ()
164165```
@@ -177,10 +178,16 @@ globeRotate.start()
177178``` json
178179//options(optional)
179180{
180- "speed" : 12 * 1000, //速度
181- "duration" : 0 , //持续时间,当此值大于0时,callback才会生效
182- "callback" : null , //执行完成的回调函数
183- "context" : null //回调函数执行上下文
181+ "speed" : 12
182+ *
183+ 1000 ,
184+ //速度
185+ "duration" : 0 ,
186+ //持续时间,当此值大于0时,callback才会生效
187+ "callback" : null ,
188+ //执行完成的回调函数
189+ "context" : null
190+ //回调函数执行上下文
184191}
185192```
186193
@@ -256,8 +263,10 @@ let rc = new DC.RoamingController(viewer)
256263``` json
257264// 漫游参数(可选)
258265{
259- "pitch" : 0 , // 俯仰角
260- "range" : 1000 // 距离
266+ "pitch" : 0 ,
267+ // 俯仰角
268+ "range" : 1000
269+ // 距离
261270}
262271```
263272
@@ -422,9 +431,12 @@ let tc = new DC.TrackController(viewer)
422431``` json
423432// 属性参数(可选)
424433{
425- "mode" : null , // 视角模式:DC.TrackViewMode
426- "pitch" : 0 , // 俯仰角,第一视角有效
427- "range" : 1000 // 距离
434+ "mode" : null ,
435+ // 视角模式:DC.TrackViewMode
436+ "pitch" : 0 ,
437+ // 俯仰角,第一视角有效
438+ "range" : 1000
439+ // 距离
428440}
429441```
430442
@@ -470,12 +482,18 @@ tc.addTrack(track)
470482``` json
471483//配置参数(可选)
472484{
473- "clampToGround" : false , // 是否贴地
474- "clampToTileset" : false , // 是否贴物
475- "interpolationType" : " Linear" , // 插值类型:Linear、Hermite、Lagrange
476- "interpolationDegree" : 2 , // 插值度数
477- "endDelayTime" : 0.5 , // 结束时间延长时间,单位:秒,
478- "headingOffset" : 0 //旋转偏移
485+ "clampToGround" : false ,
486+ // 是否贴地
487+ "clampToTileset" : false ,
488+ // 是否贴物
489+ "interpolationType" : " Linear" ,
490+ // 插值类型:Linear、Hermite、Lagrange
491+ "interpolationDegree" : 2 ,
492+ // 插值度数
493+ "endDelayTime" : 0.5 ,
494+ // 结束时间延长时间,单位:秒,
495+ "headingOffset" : 0
496+ //旋转偏移
479497}
480498```
481499
0 commit comments