Skip to content

Commit 235a543

Browse files
committed
update docs
1 parent 880538a commit 235a543

File tree

3 files changed

+60
-45
lines changed

3 files changed

+60
-45
lines changed

docs/zh/api/base.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -747,15 +747,12 @@ scene.skyBox = new DC.GroundSkyBox({
747747
- `{Object} options`:配置
748748
- 返回值 `skyBox`
749749

750-
```json
750+
```js
751751
//options(可选)
752-
{
753-
"sources": {},
754-
// 六个面的贴图
755-
"show": true,
756-
//显示
757-
"offsetAngle": 0
758-
//旋转角度
752+
const options = {
753+
"sources": {},// 六个面的贴图
754+
"show": true,//显示
755+
"offsetAngle": 0//旋转角度
759756
}
760757
```
761758

docs/zh/api/effect-animation.md

Lines changed: 52 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -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()
158158
let globeRotate = new DC.GlobeRotate(viewer, {
159159
duration: 5,
160160
speed: 1000,
161-
callback: () => {},
161+
callback: () => {
162+
},
162163
})
163164
globeRotate.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

docs/zh/api/global.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
> 框架全局配置,用于配置资源文件以及AccessToken
66
77
```js
8-
DC.config.
8+
DC.config.baseUrl = "../***/***/"
99
```
1010

1111
- 参数
1212
- `{Object} config`:配置参数
1313
- 返回值 `Promise`
1414

15-
```json
15+
```js
1616
//属性参数(可选)
17-
{
17+
const config = {
1818
"baseUrl": "<Cesium 静态资源路径,默认值为:“./libs/dc-sdk/resources/” >"
1919
}
2020
```

0 commit comments

Comments
 (0)