-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtools-meta.json
More file actions
1490 lines (1490 loc) · 49.9 KB
/
tools-meta.json
File metadata and controls
1490 lines (1490 loc) · 49.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"serverInfo": {
"name": "cesium-mcp-runtime",
"version": "1.139.19"
},
"tools": [
{
"name": "flyTo",
"description": "飞行到指定经纬度位置(带动画过渡)",
"inputSchema": {
"type": "object",
"properties": {
"longitude": {
"type": "number",
"description": "经度(-180 ~ 180)"
},
"latitude": {
"type": "number",
"description": "纬度(-90 ~ 90)"
},
"height": {
"type": "number",
"default": 50000,
"description": "相机高度(米),默认 50000"
},
"heading": {
"type": "number",
"default": 0,
"description": "航向角(度),0 为正北"
},
"pitch": {
"type": "number",
"default": -45,
"description": "俯仰角(度),-90 为正下方"
},
"duration": {
"type": "number",
"default": 2,
"description": "飞行动画时长(秒)"
}
},
"required": [
"longitude",
"latitude"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "addGeoJsonLayer",
"description": "添加 GeoJSON 图层到地图(支持 Point/Line/Polygon,可配置颜色/分级/分类渲染)",
"inputSchema": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "图层ID(不传则自动生成)"
},
"name": {
"type": "string",
"description": "图层显示名称"
},
"data": {
"type": "object",
"additionalProperties": {},
"description": "GeoJSON FeatureCollection 对象"
},
"style": {
"type": "object",
"additionalProperties": {},
"description": "样式配置(color, opacity, pointSize, choropleth, category)"
}
},
"required": [
"data"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "addLabel",
"description": "为 GeoJSON 要素添加文本标注(显示属性值)",
"inputSchema": {
"type": "object",
"properties": {
"data": {
"type": "object",
"additionalProperties": {},
"description": "GeoJSON FeatureCollection 对象"
},
"field": {
"type": "string",
"description": "用作标注文本的属性字段名(如 \"name\"、\"population\")"
},
"style": {
"type": "object",
"additionalProperties": {},
"description": "标注样式(font, fillColor, outlineColor, scale 等)"
}
},
"required": [
"data",
"field"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "addHeatmap",
"description": "添加热力图图层(基于 GeoJSON 点数据生成热力可视化)",
"inputSchema": {
"type": "object",
"properties": {
"data": {
"type": "object",
"additionalProperties": {},
"description": "GeoJSON Point FeatureCollection"
},
"radius": {
"type": "number",
"default": 30,
"description": "热力影响半径(像素)"
}
},
"required": [
"data"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "removeLayer",
"description": "从地图上移除指定图层(按图层ID)",
"inputSchema": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "要移除的图层ID(可通过 listLayers 获取)"
}
},
"required": [
"id"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "clearAll",
"description": "清除地图上的所有图层、实体、动画和轨迹(一键重置场景)",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "setBasemap",
"description": "切换底图风格(暗色/卫星/标准/OSM/ArcGIS/浅色/天地图等)",
"inputSchema": {
"type": "object",
"properties": {
"basemap": {
"type": "string",
"enum": [
"dark",
"satellite",
"standard",
"osm",
"arcgis",
"light",
"tianditu_vec",
"tianditu_img",
"amap",
"amap_satellite"
],
"description": "底图类型:dark=暗色, satellite=卫星影像, standard=标准, osm=OpenStreetMap, arcgis=ArcGIS街道, light=浅色, tianditu_vec=天地图矢量, tianditu_img=天地图影像, amap=高德地图, amap_satellite=高德卫星"
},
"token": {
"type": "string",
"description": "底图服务令牌(天地图等需要认证的服务必填)"
},
"url": {
"type": "string",
"description": "自定义URL模板({x},{y},{z}占位符),提供时忽略basemap参数"
}
},
"required": [
"basemap"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "screenshot",
"description": "截取当前地图视图(返回 base64 PNG)",
"inputSchema": {
"type": "object",
"properties": {},
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "highlight",
"description": "高亮指定图层的要素",
"inputSchema": {
"type": "object",
"properties": {
"layerId": {
"type": "string",
"description": "图层ID"
},
"featureIndex": {
"type": "number",
"description": "要素索引(不传则高亮全部)"
},
"color": {
"type": "string",
"default": "#FFFF00",
"description": "高亮颜色(CSS 格式)"
}
},
"required": [
"layerId"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "measure",
"description": "测量距离或面积(基于坐标计算,可在地图上显示)",
"inputSchema": {
"type": "object",
"properties": {
"mode": {
"type": "string",
"enum": ["distance", "area"],
"description": "测量模式:distance=距离, area=面积"
},
"positions": {
"type": "array",
"items": {
"type": "array",
"items": { "type": "number" },
"minItems": 2,
"maxItems": 3
},
"minItems": 2,
"description": "坐标数组 [[lon,lat,alt?], ...]"
},
"showOnMap": {
"type": "boolean",
"default": true,
"description": "是否在地图上显示测量结果"
},
"id": {
"type": "string",
"description": "自定义测量实体ID"
}
},
"required": ["mode", "positions"],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "setView",
"description": "瞬间切换到指定经纬度视角(无动画)",
"inputSchema": {
"type": "object",
"properties": {
"longitude": {
"type": "number",
"description": "经度(-180 ~ 180)"
},
"latitude": {
"type": "number",
"description": "纬度(-90 ~ 90)"
},
"height": {
"type": "number",
"default": 50000,
"description": "高度(米)"
},
"heading": {
"type": "number",
"default": 0,
"description": "航向角(度)"
},
"pitch": {
"type": "number",
"default": -90,
"description": "俯仰角(度)"
},
"roll": {
"type": "number",
"default": 0,
"description": "翻滚角(度)"
}
},
"required": [
"longitude",
"latitude"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "getView",
"description": "获取当前相机视角信息(经纬度、高度、角度)",
"inputSchema": {
"type": "object",
"properties": {},
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "zoomToExtent",
"description": "缩放到指定地理范围",
"inputSchema": {
"type": "object",
"properties": {
"west": {
"type": "number",
"description": "西边界经度(度)"
},
"south": {
"type": "number",
"description": "南边界纬度(度)"
},
"east": {
"type": "number",
"description": "东边界经度(度)"
},
"north": {
"type": "number",
"description": "北边界纬度(度)"
},
"duration": {
"type": "number",
"default": 2,
"description": "动画时长(秒)"
}
},
"required": [
"west",
"south",
"east",
"north"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "addMarker",
"description": "在指定经纬度添加标注点,返回 layerId 供后续操作",
"inputSchema": {
"type": "object",
"properties": {
"longitude": {
"type": "number",
"description": "经度(-180 ~ 180)"
},
"latitude": {
"type": "number",
"description": "纬度(-90 ~ 90)"
},
"label": {
"type": "string",
"description": "标注文本"
},
"color": {
"type": "string",
"default": "#3B82F6",
"description": "标注颜色(CSS 格式)"
},
"size": {
"type": "number",
"default": 12,
"description": "点大小(像素)"
},
"id": {
"type": "string",
"description": "自定义图层ID(不传则自动生成)"
}
},
"required": [
"longitude",
"latitude"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "addPolyline",
"description": "在地图上添加折线(路径、线段),返回 entityId",
"inputSchema": {
"type": "object",
"properties": {
"coordinates": {
"type": "array",
"items": {
"type": "array",
"items": { "type": "number" }
},
"description": "折线坐标数组 [[lon, lat, height?], ...]"
},
"color": {
"type": "string",
"default": "#3B82F6",
"description": "线条颜色(CSS 格式)"
},
"width": {
"type": "number",
"default": 3,
"description": "线条宽度(像素)"
},
"clampToGround": {
"type": "boolean",
"default": true,
"description": "是否贴地"
},
"label": {
"type": "string",
"description": "折线标注文本"
}
},
"required": ["coordinates"],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "addPolygon",
"description": "在地图上添加多边形区域(面积、边界),返回 entityId",
"inputSchema": {
"type": "object",
"properties": {
"coordinates": {
"type": "array",
"items": {
"type": "array",
"items": { "type": "number" }
},
"description": "多边形外环坐标 [[lon, lat, height?], ...]"
},
"color": {
"type": "string",
"default": "#3B82F6",
"description": "填充颜色(CSS 格式)"
},
"outlineColor": {
"type": "string",
"default": "#FFFFFF",
"description": "描边颜色"
},
"opacity": {
"type": "number",
"default": 0.6,
"description": "填充透明度(0~1)"
},
"extrudedHeight": {
"type": "number",
"description": "拉伸高度(米),可用于创建立体效果"
},
"clampToGround": {
"type": "boolean",
"default": true,
"description": "是否贴地"
},
"label": {
"type": "string",
"description": "多边形标注文本"
}
},
"required": ["coordinates"],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "addModel",
"description": "在指定经纬度放置 3D 模型(glTF/GLB),返回 entityId",
"inputSchema": {
"type": "object",
"properties": {
"longitude": {
"type": "number",
"description": "经度(-180 ~ 180)"
},
"latitude": {
"type": "number",
"description": "纬度(-90 ~ 90)"
},
"height": {
"type": "number",
"default": 0,
"description": "放置高度(米)"
},
"url": {
"type": "string",
"description": "glTF/GLB 模型文件 URL"
},
"scale": {
"type": "number",
"default": 1,
"description": "模型缩放比例"
},
"heading": {
"type": "number",
"default": 0,
"description": "航向角(度),0=正北"
},
"pitch": {
"type": "number",
"default": 0,
"description": "俯仰角(度)"
},
"roll": {
"type": "number",
"default": 0,
"description": "翻滚角(度)"
},
"label": {
"type": "string",
"description": "模型标注文本"
}
},
"required": ["longitude", "latitude", "url"],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "updateEntity",
"description": "更新已有实体的属性(位置、颜色、标签、缩放、可见性)",
"inputSchema": {
"type": "object",
"properties": {
"entityId": {
"type": "string",
"description": "实体ID(addMarker/addPolyline 等返回的 entityId)"
},
"position": {
"type": "object",
"properties": {
"longitude": { "type": "number" },
"latitude": { "type": "number" },
"height": { "type": "number" }
},
"required": ["longitude", "latitude"],
"description": "新位置坐标"
},
"label": {
"type": "string",
"description": "新标注文本"
},
"color": {
"type": "string",
"description": "新颜色(CSS 格式)"
},
"scale": {
"type": "number",
"description": "新缩放比例"
},
"show": {
"type": "boolean",
"description": "是否显示"
}
},
"required": ["entityId"],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "removeEntity",
"description": "移除单个实体(通过 entityId)",
"inputSchema": {
"type": "object",
"properties": {
"entityId": {
"type": "string",
"description": "要移除的实体ID"
}
},
"required": ["entityId"],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "setLayerVisibility",
"description": "设置图层可见性",
"inputSchema": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "图层ID"
},
"visible": {
"type": "boolean",
"description": "是否可见"
}
},
"required": [
"id",
"visible"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "listLayers",
"description": "获取当前所有图层列表(含 ID、名称、类型、可见性)",
"inputSchema": {
"type": "object",
"properties": {},
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "getLayerSchema",
"description": "获取图层的属性字段结构 — 返回字段名、类型、示例值,适用于 GeoJSON/CZML/KML/3D Tiles 图层",
"inputSchema": {
"type": "object",
"properties": {
"layerId": {
"type": "string",
"description": "图层ID(可通过 listLayers 获取)"
}
},
"required": ["layerId"],
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "updateLayerStyle",
"description": "修改已有图层的样式(颜色、透明度、标注样式等)",
"inputSchema": {
"type": "object",
"properties": {
"layerId": {
"type": "string",
"description": "图层ID"
},
"labelStyle": {
"type": "object",
"additionalProperties": {},
"description": "标注样式(font, fillColor, outlineColor, outlineWidth, scale 等)"
},
"layerStyle": {
"type": "object",
"additionalProperties": {},
"description": "图层样式(color, opacity, strokeWidth, pointSize)"
}
},
"required": [
"layerId"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "playTrajectory",
"description": "播放移动轨迹动画",
"inputSchema": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "轨迹图层ID"
},
"name": {
"type": "string",
"description": "轨迹名称"
},
"coordinates": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "number"
}
},
"description": "轨迹坐标数组 [[lon, lat, alt?], ...]"
},
"durationSeconds": {
"type": "number",
"default": 10,
"description": "动画时长(秒)"
},
"trailSeconds": {
"type": "number",
"default": 2,
"description": "尾迹长度(秒)"
},
"label": {
"type": "string",
"description": "移动体标签"
}
},
"required": [
"coordinates"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "load3dTiles",
"description": "加载 3D Tiles 数据集(支持 URL 或 Cesium Ion 资产 ID)",
"inputSchema": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "图层ID"
},
"name": {
"type": "string",
"description": "图层名称"
},
"url": {
"type": "string",
"description": "tileset.json 的 URL(与 ionAssetId 二选一)"
},
"ionAssetId": {
"type": "number",
"description": "Cesium Ion 资产 ID(与 url 二选一)"
},
"maximumScreenSpaceError": {
"type": "number",
"default": 16,
"description": "最大屏幕空间误差(值越小越精细)"
},
"heightOffset": {
"type": "number",
"description": "高度偏移(米)"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "loadTerrain",
"description": "加载或切换地形(平坦/ArcGIS/CesiumIon/自定义 URL)",
"inputSchema": {
"type": "object",
"properties": {
"provider": {
"type": "string",
"enum": [
"flat",
"arcgis",
"cesiumion"
],
"description": "地形提供者类型"
},
"url": {
"type": "string",
"description": "自定义地形服务 URL"
},
"cesiumIonAssetId": {
"type": "number",
"description": "Cesium Ion 资产ID(provider=cesiumion 时需要)"
}
},
"required": [
"provider"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "loadImageryService",
"description": "加载影像服务图层(WMS/WMTS/XYZ/ArcGIS MapServer/Cesium Ion)",
"inputSchema": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "图层ID"
},
"name": {
"type": "string",
"description": "图层名称"
},
"url": {
"type": "string",
"description": "影像服务 URL(与 ionAssetId 二选一)"
},
"ionAssetId": {
"type": "number",
"description": "Cesium Ion 影像资产 ID(与 url 二选一)"
},
"serviceType": {
"type": "string",
"enum": [
"wms",
"wmts",
"xyz",
"arcgis_mapserver",
"ion"
],
"description": "服务类型(使用 ionAssetId 时可不填)"
},
"layerName": {
"type": "string",
"description": "WMS/WMTS 图层名"
},
"opacity": {
"type": "number",
"default": 1,
"description": "透明度(0~1)"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": {
"taskSupport": "forbidden"
}
},
{
"name": "loadCzml",
"description": "加载 CZML 时序数据源(CesiumJS 原生格式,支持时变位置/样式/动画)。data 和 url 二选一",
"inputSchema": {
"type": "object",
"properties": {
"id": { "type": "string", "description": "图层ID(不传则自动生成)" },
"name": { "type": "string", "description": "数据源显示名称" },
"data": { "type": "array", "description": "CZML 数据包数组(与 url 二选一)" },
"url": { "type": "string", "description": "CZML 文件 URL(与 data 二选一,浏览器端 fetch 加载)" },
"sourceUri": { "type": "string", "description": "CZML 中相对引用的基础 URI" },
"clampToGround": { "type": "boolean", "description": "将实体贴地显示" },
"flyTo": { "type": "boolean", "description": "加载后自动飞行到数据范围(默认 true)" }
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": { "taskSupport": "forbidden" }
},
{
"name": "loadKml",
"description": "加载 KML/KMZ 数据源(Google Earth 格式)。data 和 url 二选一",
"inputSchema": {
"type": "object",
"properties": {
"id": { "type": "string", "description": "图层ID(不传则自动生成)" },
"name": { "type": "string", "description": "数据源显示名称" },
"url": { "type": "string", "description": "KML/KMZ 文件 URL(与 data 二选一,浏览器端 fetch 加载)" },
"data": { "type": "string", "description": "KML XML 字符串(与 url 二选一)" },
"sourceUri": { "type": "string", "description": "KML 中相对引用的基础 URI" },
"clampToGround": { "type": "boolean", "description": "将实体贴地显示" },
"flyTo": { "type": "boolean", "description": "加载后自动飞行到数据范围(默认 true)" }
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"execution": { "taskSupport": "forbidden" }
},
{
"name": "lookAtTransform",
"description": "环绕式相机注视某位置(ENU变换 + 朝向/俯仰/距离)",
"inputSchema": {
"type": "object",
"properties": {
"longitude": { "type": "number", "description": "目标经度" },
"latitude": { "type": "number", "description": "目标纬度" },
"height": { "type": "number", "default": 0, "description": "目标高度(米)" },
"heading": { "type": "number", "default": 0, "description": "朝向角(度)" },
"pitch": { "type": "number", "default": -45, "description": "俯仰角(度)" },
"range": { "type": "number", "default": 5000, "description": "与目标的距离(米)" }
},
"required": ["longitude", "latitude"],
"additionalProperties": false
},
"execution": { "taskSupport": "forbidden" }
},
{
"name": "startOrbit",
"description": "开始相机环绕当前中心旋转",
"inputSchema": {
"type": "object",
"properties": {
"speed": { "type": "number", "default": 1, "description": "旋转速度(度/秒)" },
"direction": { "type": "string", "enum": ["clockwise", "counterclockwise"], "default": "clockwise" }
},
"additionalProperties": false
},
"execution": { "taskSupport": "forbidden" }
},
{
"name": "stopOrbit",
"description": "停止环绕动画",
"inputSchema": { "type": "object", "properties": {}, "additionalProperties": false },
"execution": { "taskSupport": "forbidden" }
},
{
"name": "setCameraOptions",
"description": "配置相机控制器(启用/禁用旋转、缩放、倾斜等)",
"inputSchema": {
"type": "object",
"properties": {
"enableRotate": { "type": "boolean", "description": "启用旋转" },