@mapgis/webclient-cesium-plugin 17.2.4 → 17.2.6

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.
@@ -0,0 +1,524 @@
1
+ <header id="page-title" class="page-title">
2
+
3
+ <span class="page-title-main">类名</span>
4
+ <span class="page-title-sub">SkyLineAnalysis</span>
5
+
6
+ </header>
7
+
8
+
9
+
10
+
11
+
12
+ <section>
13
+
14
+ <article>
15
+ <div class="container-overview">
16
+
17
+
18
+ <div class='vertical-section'>
19
+ <div class="members">
20
+ <div class="member">
21
+
22
+
23
+
24
+
25
+ <h4 class="name" id="SkyLineAnalysis">
26
+ <a class="href-link" href="#SkyLineAnalysis">#</a>
27
+
28
+ <span class="code-name" id="SkyLineAnalysis" style="font-size:30px">
29
+
30
+ new SkyLineAnalysis<span class="signature">(options)</span>
31
+
32
+ </span>
33
+ </h4>
34
+
35
+
36
+
37
+ <div class="description">
38
+ <p>天际线分析</p>
39
+ </div>
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+ <h4>参数</h4>
51
+
52
+ <div class="table-container">
53
+ <table class="params table">
54
+ <thead>
55
+ <tr>
56
+
57
+ <th>名称</th>
58
+
59
+
60
+ <th>类型</th>
61
+
62
+
63
+ <th style="min-width: 100px;">默认值</th>
64
+
65
+
66
+ <th class="last">描述</th>
67
+ </tr>
68
+ </thead>
69
+
70
+ <tbody>
71
+
72
+
73
+
74
+ <tr class="deep-level-0">
75
+
76
+ <td class="name"><code>options</code></td>
77
+
78
+
79
+ <td class="type">
80
+
81
+
82
+ <span class="param-type">
83
+
84
+ Object
85
+
86
+ </span>
87
+
88
+
89
+
90
+
91
+ </td>
92
+
93
+
94
+ <td class="default">
95
+
96
+ </td>
97
+
98
+
99
+ <td class="description last"><p>附加选项</p></td>
100
+ </tr>
101
+
102
+
103
+
104
+
105
+ <tr class="deep-level-1">
106
+
107
+ <td class="name"><code>scene</code></td>
108
+
109
+
110
+ <td class="type">
111
+
112
+
113
+ <span class="param-type">
114
+
115
+ Object
116
+
117
+ </span>
118
+
119
+
120
+
121
+
122
+ </td>
123
+
124
+
125
+ <td class="default">
126
+
127
+ </td>
128
+
129
+
130
+ <td class="description last"><p>场景</p></td>
131
+ </tr>
132
+
133
+
134
+
135
+
136
+ <tr class="deep-level-1">
137
+
138
+ <td class="name"><code>color</code></td>
139
+
140
+
141
+ <td class="type">
142
+
143
+
144
+ <span class="param-type">
145
+
146
+ Cesium.Color
147
+
148
+ </span>
149
+
150
+
151
+
152
+
153
+ </td>
154
+
155
+
156
+ <td class="default">
157
+
158
+ new Cesium.Color(1.0,0.0,0.0,1.0)
159
+
160
+ </td>
161
+
162
+
163
+ <td class="description last"><p>天际线颜色</p></td>
164
+ </tr>
165
+
166
+
167
+
168
+
169
+ <tr class="deep-level-1">
170
+
171
+ <td class="name"><code>analysisEndCallBack</code></td>
172
+
173
+
174
+ <td class="type">
175
+
176
+
177
+ <span class="param-type">
178
+
179
+ function
180
+
181
+ </span>
182
+
183
+
184
+
185
+
186
+ </td>
187
+
188
+
189
+ <td class="default">
190
+
191
+ </td>
192
+
193
+
194
+ <td class="description last"><p>回调函数,返回天际线点坐标数组,点坐标为世界坐标</p></td>
195
+ </tr>
196
+
197
+
198
+
199
+
200
+
201
+
202
+
203
+ </tbody>
204
+ </table>
205
+ </div>
206
+
207
+
208
+
209
+
210
+
211
+
212
+ <dl class="details">
213
+
214
+
215
+
216
+
217
+
218
+
219
+
220
+
221
+
222
+
223
+
224
+
225
+
226
+
227
+
228
+
229
+
230
+
231
+ <dt class="tag-author">作者:</dt>
232
+ <dd class="tag-author">
233
+ <ul>
234
+ <li>韩彦生</li>
235
+ </ul>
236
+ </dd>
237
+
238
+
239
+
240
+
241
+
242
+
243
+
244
+
245
+
246
+
247
+
248
+
249
+
250
+
251
+ </dl>
252
+
253
+
254
+
255
+
256
+
257
+
258
+
259
+
260
+
261
+
262
+
263
+
264
+
265
+
266
+
267
+
268
+
269
+
270
+
271
+
272
+
273
+
274
+
275
+ <h5>示例</h5>
276
+
277
+
278
+ <pre class="prettyprint"><code>var manager = scene.VisualAnalysisManager;
279
  {
1
280
  scene: scene,
2
281
  color: new Cesium.Cesium.Color(0.5, 0.8, 0.3),
3
282
  analysisEndCallBack: getPositionCallBack
4
283
  });
5
284
  manager.add(skyLineAn);
6
285
  function getPositionCallBack(result) {}</code></pre>
286
+
287
+
288
+
289
+
290
+ </div>
291
+ </div>
292
+ </div>
293
+
294
+
295
+ </div>
296
+
297
+
298
+
299
+
300
+
301
+
302
+
303
+
304
+
305
+
306
+
307
+
308
+
309
+
310
+ <div class='vertical-section'>
311
+ <h3 id='member'>成员变量</h3>
312
+ <h4 style="margin-top: 20px;margin-bottom: 20px;">成员变量概述</h4>
313
+ <div class="table-container">
314
+ <table class="params table">
315
+ <thead>
316
+ <tr>
317
+ <th>名称</th>
318
+ <th>类型</th>
319
+ <th>描述</th>
320
+ </tr>
321
+ </thead>
322
+ <tbody>
323
+
324
+ <tr class="deep-level-0">
325
+ <td class="name"><code><a href="#color">color</a></code></td>
326
+ <td class="name">
327
+ <code>
328
+
329
+ <span class="param-type">
330
+
331
+ Cesium.Color
332
+
333
+ </span>
334
+
335
+
336
+
337
+ </code>
338
+ </td>
339
+ <td class="name"><code><p>天际线颜色</p></code></td>
340
+ </tr>
341
+
342
+ <tr class="deep-level-0">
343
+ <td class="name"><code><a href="#positions2D">positions2D</a></code></td>
344
+ <td class="name">
345
+ <code>
346
+
347
+ <span class="param-type">
348
+
349
+ Array
350
+
351
+ </span>
352
+
353
+
354
+
355
+ </code>
356
+ </td>
357
+ <td class="name"><code><p>获取天际线的 2d 屏幕坐标点 用于2d展示</p></code></td>
358
+ </tr>
359
+
360
+ </tbody>
361
+ </table>
362
+ </div>
363
+ <h4 style="margin-top: 20px;margin-bottom: 20px;">成员变量详情</h4>
364
+ <div class="members">
365
+
366
+ <div class="member">
367
+
368
+ <span class="method-parameter is-pulled-right">
369
+ <label>类型:</label>
370
+
371
+ <span class="param-type">
372
+
373
+ Cesium.Color
374
+
375
+ </span>
376
+
377
+
378
+
379
+ </span>
380
+
381
+ <h4 class="name" id="color">
382
+ <a class="href-link" href="#color">#</a>
383
+
384
+ <span class="code-name">
385
+ color
386
+ </span>
387
+
388
+ </h4>
389
+
390
+
391
+
392
+
393
+ <div class="description">
394
+ <p>天际线颜色</p>
395
+ </div>
396
+
397
+
398
+
399
+
400
+
401
+ <dl class="details">
402
+
403
+
404
+
405
+
406
+
407
+
408
+
409
+
410
+
411
+
412
+
413
+
414
+
415
+
416
+
417
+
418
+
419
+
420
+
421
+
422
+
423
+
424
+
425
+
426
+
427
+
428
+
429
+
430
+
431
+
432
+
433
+ </dl>
434
+
435
+
436
+
437
+
438
+
439
+ </div>
440
+
441
+ <div class="member">
442
+
443
+ <span class="method-parameter is-pulled-right">
444
+ <label>类型:</label>
445
+
446
+ <span class="param-type">
447
+
448
+ Array
449
+
450
+ </span>
451
+
452
+
453
+
454
+ </span>
455
+
456
+ <h4 class="name" id="positions2D">
457
+ <a class="href-link" href="#positions2D">#</a>
458
+
459
+
460
+ <span class='tag'>readonly</span>
461
+
462
+
463
+ <span class="code-name">
464
+ positions2D
465
+ </span>
466
+
467
+ </h4>
468
+
469
+
470
+
471
+
472
+ <div class="description">
473
+ <p>获取天际线的 2d 屏幕坐标点 用于2d展示</p>
474
+ </div>
475
+
476
+
477
+
478
+
479
+
480
+ <dl class="details">
481
+
482
+
483
+
484
+
485
+
486
+
487
+
488
+
489
+
490
+
491
+
492
+
493
+
494
+
495
+
496
+
497
+
498
+
499
+
500
+
501
+
502
+
503
+
504
+
505
+
506
+
507
+
508
+
509
+
510
+
511
+
512
+ </dl>
513
+
514
+
515
+
516
+
517
+
518
+ </div>
519
+
520
+ </div>
521
+ </div>
522
+
523
+
524
+
525
+
526
+
527
+
528
+
529
+ </article>
530
+
531
+ </section>