-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest_ja.yml
More file actions
1364 lines (1364 loc) · 48.3 KB
/
Copy pathmanifest_ja.yml
File metadata and controls
1364 lines (1364 loc) · 48.3 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
name: Re:Earth公式プラグイン
description: 公式プラグイン
extensions:
cesium-beta:
name: Cesium Beta
description: プロジェクト概要
propertySchema:
default:
title: メイン
fields:
sceneMode:
title: シーンモード
description: 地球儀の表示を2D、2.5D、3Dから選択します。
ion:
title: Cesium Ion アクセストークン
description: ご自身の Cesium Ion アカウントからアクセストークンを発行し、ここに設定します。Cesium Ion のアセット(タイルデータ・3Dデータなど)の使用が可能になります。
vr:
title: VR
description: 画面を左右に分割するVRモードを有効にします。
tiles:
title: タイル
description: 手持ちのタイルデータを使用し、地球上に表示することができます。
fields:
tile_type:
title: 種類
choices:
default: デフォルト
default_label: ラベル付き地図
default_road: 道路地図
open_street_map: OpenStreetMap
black_marble: Black Marble
japan_gsi_standard: 地理院地図 標準地図
url: URL
tile_url:
title: URL
tile_zoomLevel:
title: ズームレベル
description: "選択したタイルマップのズームレベルを変更します。 最小値: 0 最大値: 1"
tile_opacity:
title: 不透明度
description: "選択したタイルマップの不透明度を変更します。 最小値: 0 最大値: 1"
terrain:
title: 地形
fields:
terrain:
title: 地形
description: 有効にすると、標高データが読み込みこまれ、立体的な地形を表現することができます。
terrainType:
title: 種類
description: 地形の種類を指定します。
choices:
cesium: Cesium World Terrain
arcgis: ArcGIS Terrain
cesiumion: Cesium Ion
terrainCesiumIonAsset:
title: Cesium Ion アセットID
description: Cesium Ion に登録されたテラインのアセットのIDを指定します。
terrainCesiumIonAccessToken:
title: Cesium Ion アクセストークン
description: シーン全体設定の Cesium Ion のアクセストークンをこのタイルのために上書きしたい場合は指定します。
terrainCesiumIonUrl:
title: Cesium Ion テラインURL
description: Cesium のテラインデータを Cesium Ion ではなくオンプレミスのサーバーで配信している場合はそのURLを指定します。アセットIDの指定よりも優先されます。
terrainExaggeration:
title: 地形の強調
description: 地形の強調を設定します。デフォルトは1.0(誇張しない)です。2.0は、地形を2倍に拡大します。0.0の値は地形を完全に平らにします。
terrainExaggerationRelativeHeight:
title: 地形の強調の基準
description: 地形が誇張される高さです。デフォルトは0.0です。この高さより上にある地形は上方に、この高さより下にある地形は下方にスケールされます。
depthTestAgainstTerrain:
title: 地形の下を非表示
description: 地形の下にあるオブジェクトを非表示にします。標高データの読み込み状況によってオブジェクトが表示されたり隠れたりすることがあります。
globeLighting:
title: 太陽光の明るさ
fields:
globeLighting:
title: 有効化
description: 地球上の地物にあたる明るさの有効無効を切り替えます。
globeShadow:
title: 陰影
fields:
globeShadow:
title: 有効化
description: 地球上の地物の陰影の有効無効を切り替えます。
globeAtmosphere:
title: 大気
fields:
globeAtmosphere:
title: 有効化
description: 地球上の大気の効果の有効無効を切り替えます。
globeAtmosphereIntensity:
title: 光の強さ
description: "選択したタイルマップの光の強さを変更します。 最小値: 0 最大値: 30"
skyBox:
title: スカイボックス
fields:
skyBox:
title: 有効化
description: 有効にすると、空に星が追加されます。
sun:
title: 太陽
fields:
sun:
title: 有効化
description: 有効にすると、空に太陽が表示されます。
moon:
title: 月
fields:
moon:
title: 有効化
description: 有効にすると、空に月が表示されます。
skyAtmosphere:
title: 上空の大気
fields:
skyAtmosphere:
title: 有効化
description: 有効にすると、リアルな上空の大気が表示されます。
skyAtmosphereIntensity:
title: 光の強さ
description: "選択したタイルマップの光の強さを変更します。 最小値: 0 最大値: 200"
camera:
title: カメラ
fields:
camera:
title: カメラの初期位置
description: プロジェクトを開いたときに表示される最初の位置
allowEnterGround:
title: 地下に入る
description: 有効にすると、カメラが地表の中に入るようになります。
fov:
title: 視野(FOV)
cesium:
name: Cesium
description: 右パネルでシーン全体の設定を変更することができます。タイル、大気、ライティングなどの設定が含まれています。
propertySchema:
default:
title: シーン
fields:
camera:
title: カメラ初期位置
description: ページロード後最初に表示するカメラの位置を設定します。
sceneMode:
title: シーンモード
description: 地球儀の表示を2D、2.5D、3Dから選択します。
allowEnterGround:
title: 地下へ入る
description: Onにすることでカメラが地表面へ潜り込むようになります。
skybox:
title: 宇宙の表示
description: 宇宙空間の表示を切り替えます。
bgcolor:
title: 背景色
description: 宇宙空間が非表示の場合の、背景色を設定します。
ion:
title: Cesium Ion アクセストークン
description: ご自身の Cesium Ion アカウントからアクセストークンを発行し、ここに設定します。Cesium Ion のアセット(タイルデータ・3Dデータなど)の使用が可能になります。
vr:
title: VR
description: 画面を左右に分割するVRモードを有効にします。
tiles:
title: タイル
description: 手持ちのタイルデータを使用し、地球上に表示することができます。
fields:
tile_title:
title: 名前
tile_type:
title: 種類
choices:
default: デフォルト
default_label: ラベル付き地図
default_road: 道路地図
stamen_watercolor: Stamen Watercolor
stamen_toner: Stamen Toner
open_street_map: OpenStreetMap
esri_world_topo: ESRI Topography
black_marble: Black Marble
japan_gsi_standard: 地理院地図 標準地図
url: URL
tile_url:
title: URL
tile_minLevel:
title: 最小レベル
tile_maxLevel:
title: 最大レベル
tile_opacity:
title: 不透明性
terrain:
title: 地形
fields:
terrain:
title: 地形
description: 有効にすると、標高データが読み込みこまれ、立体的な地形を表現することができます。
terrainType:
title: 種類
description: 地形の種類を指定します。
choices:
cesium: Cesium World Terrain
arcgis: ArcGIS Terrain
cesiumion: Cesium Ion
terrainCesiumIonAsset:
title: Cesium Ion アセットID
description: Cesium Ion に登録されたテラインのアセットのIDを指定します。
terrainCesiumIonAccessToken:
title: Cesium Ion アクセストークン
description: シーン全体設定の Cesium Ion のアクセストークンをこのタイルのために上書きしたい場合は指定します。
terrainCesiumIonUrl:
title: Cesium Ion テラインURL
description: Cesium のテラインデータを Cesium Ion ではなくオンプレミスのサーバーで配信している場合はそのURLを指定します。アセットIDの指定よりも優先されます。
terrainExaggeration:
title: 地形の強調
description: 地形の強調を設定します。デフォルトは1.0(誇張しない)です。2.0は、地形を2倍に拡大します。0.0の値は地形を完全に平らにします。
terrainExaggerationRelativeHeight:
title: 地形の強調の基準
description: 地形が誇張される高さです。デフォルトは0.0です。この高さより上にある地形は上方に、この高さより下にある地形は下方にスケールされます。
depthTestAgainstTerrain:
title: 地形の下を非表示
description: 地形の下にあるオブジェクトを非表示にします。標高データの読み込み状況によってオブジェクトが表示されたり隠れたりすることがあります。
indicator:
title: インディケーター
description: レイヤー選択時に表示されるインディケーターのスタイルを設定します
fields:
indicator_type:
title: タイプ
description: インディケーターの見た目を設定します
choices:
default: デフォルト
crosshair: 十字線
custom: カスタム
indicator_image:
title: 画像URL
indicator_image_scale:
title: 画像サイズ
atmosphere:
title: 大気
description: 地球を覆う大気圏の設定ができます。
fields:
enable_sun:
title: 太陽
description: 宇宙空間に存在する太陽の表示を切り替えます。
enable_lighting:
title: 太陽光
description: 太陽光のON/OFFを切り替えることで、昼夜を表現することができます。
ground_atmosphere:
title: 地表の大気
description: 地表の大気圏のON/OFFを切り替えます。
sky_atmosphere:
title: 上空の大気
description: 地球を覆う大気圏のON/OFFを切り替えます。
shadows:
title: 影
description: オブジェクトが落とす影を表示します。併せて各レイヤーの影の設定をそれぞれ有効にする必要があります。
fog:
title: 霧
description: 霧のON/OFFを切り替えます。
fog_density:
title: 濃度
description: 霧の濃度を0以上から設定します。
brightness_shift:
title: 明度
hue_shift:
title: 色相
surturation_shift:
title: 彩度
timeline:
title: タイムライン
fields:
animation:
title: アニメーション
description: アニメーションの再生を有効にします。3Dモデルのアニメーションが再生されるようになります。
visible:
title: タイムライン
description: タイムラインのUIを表示します。
current:
title: 現在時刻
start:
title: 開始時刻
description: 何も設定されていない場合は表示中のデータによって自動的に設定されます。
stop:
title: 終了時刻
description: 何も設定されていない場合は表示中のデータによって自動的に設定されます。
stepType:
title: 再生速度の種類
description: 再生速度の指定方法です。
choices:
rate: 倍率
fixed: 固定
multiplier:
title: 再生速度
description: 再生速度を現実の時間の速さに対する倍率で指定します。マイナス値も指定可能です。デフォルトは1倍です。
step:
title: 再生速度
description: 再生速度を秒で指定します。画面の描画が繰り返される度に指定した指定した秒数分進みます。マイナス値も指定可能です。デフォルトは1秒です。
suffix: 秒
rangeType:
title: 再生終了時
description: 現在時刻が終了時刻に達した時の処理方法を指定します。
choices:
unbounded: 再生を続ける
clamped: 停止する
bounced: バウンス
cameraLimiter:
title: カメラ範囲制限
description: カメラの移動できる範囲を制限することができます。
fields:
cameraLimitterEnabled:
title: 有効
description: カメラの範囲制限を有効にします。
cameraLimitterShowHelper:
title: 範囲を表示
description: カメラの移動範囲を表すボックスを表示します。
cameraLimitterTargetArea:
title: 基準位置
description: 移動範囲の基準となる位置です。この位置が制限範囲を表すボックスの横方向と奥行き方向の中心点となり、かつ移動可能範囲における最大の高さとなります。ここで指定した高さ以上にカメラをズームアウトすることができなくなります。
cameraLimitterTargetWidth:
title: 経度の範囲
description: 制限範囲を表すボックスの幅(経度の方向)を指定します。
cameraLimitterTargetLength:
title: 緯度の範囲
description: 制限範囲を表すボックスの奥行き(緯度の方向)を指定します。
googleAnalytics:
title: Google Analytics
description: Google Analyticsを有効にすることで、公開ページがどのように閲覧されているかを分析することが可能です。
fields:
enableGA:
title: 有効
description: Google Analyticsを有効にします。
trackingCode:
title: トラッキングID
description: ここにGoogle AnalyticsのトラッキングIDを貼り付けることで、公開プロジェクトにこのコードが埋め込まれます。
experimental:
title: 高度な設定
fields:
experimental_core:
title: 先進的機能を使用
description: このシーンに対して先進的機能を有効にします。(ベータ版)
experimental_sandbox:
title: サンドボックスを有効(アルファ版)
description: プラグインのiframeのサンドボックスを有効にします。(アルファ版)
theme:
title: 公開用テーマ
description: 公開用のテーマを設定することができます。
fields:
themeType:
title: テーマ
description: テーマの種類を選択します。より細かくテーマを指定したい場合はカスタムを選択します。
choices:
dark: Re:Earth ダーク
light: Re:Earth ライト
forest: 森
custom: カスタム
themeTextColor:
title: 文字色
description: 文字色を設定します。
themeSelectColor:
title: 選択色
description: 選択色を設定します。
themeBackgroundColor:
title: 背景色
description: 背景色を設定します。
infobox:
name: インフォボックス
description: 閲覧者が地図上のレイヤーをクリックした時に表示されるボックスです。テキストや画像、動画などのコンテンツを表示することができます。
propertySchema:
default:
title: デフォルト
fields:
title:
title: タイトル
showTitle:
title: タイトル表示
position:
title: 位置
choices:
right: 右
middle: 中央
left: 左
size:
title: サイズ
choices:
small: 小
medium: 中
large: 大
heightType:
title: 高さ設定
choices:
auto: 自動
manual: 手動
height:
title: 高さ
description: インフォボックスの高さを設定します。最小284px・最大2048px
infoboxPaddingTop:
title: 余白上
description: "上端の余白を設定します。最小0px・最大40px"
infoboxPaddingBottom:
title: 余白下
description: "下端の余白を設定します。最小0px・最大40px"
infoboxPaddingLeft:
title: 余白左
description: "左端の余白を設定します。最小0px・最大40px"
infoboxPaddingRight:
title: 余白右
description: "右端の余白を設定します。最小px・最大40px"
bgcolor:
title: 背景色
outlineWidth:
title: 線幅
outlineColor:
title: 線色
useMask:
title: 背景オーバーレイ
typography:
title: フォント
marker:
name: マーカー
description: マーカーにはテキストや画像を紐づけることができ、閲覧者はマーカーをクリックすることでコンテンツを見ることができます。
propertySchema:
default:
title: マーカー
fields:
location:
title: 位置
height:
title: 高度
heightReference:
title: 高度の基準
description: 地形を基準とした相対的な高度にすることができます。デフォルトではWGS84楕円体からの絶対的な高度になります。
choices:
none: デフォルト
clamp: 地表に固定
relative: 地表からの高度
style:
title: 表示方法
choices:
point: 点
image: アイコン
pointColor:
title: 点の色
pointSize:
title: 点の大きさ
pointOutlineColor:
title: 点の線の色
pointOutlineWidth:
title: 点の線の幅
image:
title: 画像URL
imageSize:
title: 画像サイズ
imageColor:
title: 画像の色
imageCrop:
title: 切り抜き
choices:
none: なし
circle: 円形
imageHorizontalOrigin:
title: 画像の中心横
choices:
left: 左
center: 中央
right: 右
imageVerticalOrigin:
title: 画像の中心縦
choices:
top: 上
center: 中央
baseline: ベースライン
bottom: 下
imageShadow:
title: 画像の影
imageShadowColor:
title: 画像の影色
imageShadowBlur:
title: 画像の影半径
imageShadowPositionX:
title: 画像の影X
imageShadowPositionY:
title: 画像の影Y
label:
title: ラベル
labelText:
title: ラベルの文字
labelPosition:
title: ラベルの位置
choices:
right: 右
left: 左
top: 上
bottom: 下
righttop: 右上
rightbottom: 右下
lefttop: 左上
leftbottom: 左下
labelTypography:
title: ラベルフォント
labelBackground:
title: ラベル背景
labelBackgroundColor:
title: ラベル背景色
labelBackgroundPaddingHorizontal:
title: ラベル背景余白左右
labelBackgroundPaddingVertical:
title: ラベル背景余白上下
extrude:
title: 地面から線を伸ばす
polyline:
name: 直線
propertySchema:
default:
title: 直線
fields:
coordinates:
title: 頂点
strokeColor:
title: 線色
strokeWidth:
title: 線幅
polygon:
name: ポリゴン
propertySchema:
default:
title: ポリゴン
fields:
polygon:
title: ポリゴン
fill:
title: 塗り
fillColor:
title: 塗り色
stroke:
title: 線
strokeColor:
title: 線色
strokeWidth:
title: 線幅
rect:
name: 長方形
propertySchema:
default:
title: 長方形
fields:
rect:
title: 長方形
height:
title: 高度
heightReference:
title: 高度の基準
description: 地形を基準とした相対的な高度にすることができます。デフォルトではWGS84楕円体からの絶対的な高度になります。
choices:
none: デフォルト
clamp: 地表に固定
relative: 地表からの高度
extrudedHeight:
title: 高さ
style:
title: スタイル
choices:
color: 色
image: 画像
fillColor:
title: 塗り色
image:
title: 画像URL
outlineColor:
title: 線の色
outlineWidth:
title: 線の幅
shadows:
title: 影
description: 影を表示します。必ずシーンの影の設定も有効にしてください。レンダリングが重くなることがあります。
choices:
disabled: 無効
enabled: 有効
cast_only: 影を落とすだけ
receive_only: 影を落とされるだけ
photooverlay:
name: フォトオーバーレイ
description: フォトオーバーレイを選択すると、設定した画像をモーダル形式で画面上に被せて表示することができます。
propertySchema:
default:
title: フォトオーバーレイ
fields:
location:
title: 位置
height:
title: 高度
heightReference:
title: 高度の基準
description: 地形を基準とした相対的な高度にすることができます。デフォルトではWGS84楕円体からの絶対的な高度になります。
choices:
none: デフォルト
clamp: 地表に固定
relative: 地表からの高度
camera:
title: カメラ
description: クリックされたときに移動するカメラの設定をします。
image:
title: アイコン
imageSize:
title: アイコンサイズ
imageHorizontalOrigin:
title: アイコンの中心横
choices:
left: 左
center: 中央
right: 右
imageVerticalOrigin:
title: アイコンの中心縦
choices:
top: 上
center: 中央
baseline: ベースライン
bottom: 下
imageCrop:
title: 切り抜き
choices:
none: なし
circle: 円形
imageShadow:
title: アイコンの影
imageShadowColor:
title: 影色
imageShadowBlur:
title: 影半径
imageShadowPositionX:
title: 影X
imageShadowPositionY:
title: 影Y
photoOverlayImage:
title: オーバレイ画像
photoOverlayDescription:
title: オーバレイ画像の説明
ellipsoid:
name: 球体
description: 立体的な球体を地図上に表示できます。
propertySchema:
default:
title: 球体
fields:
position:
title: 位置
height:
title: 高度
heightReference:
title: 高度の基準
description: 地形を基準とした相対的な高度にすることができます。デフォルトではWGS84楕円体からの絶対的な高度になります。
choices:
none: デフォルト
clamp: 地表に固定
relative: 地表からの高度
radius:
title: 半径
fillColor:
title: 塗り色
shadows:
title: 影
description: 影を表示します。必ずシーンの影の設定も有効にしてください。レンダリングが重くなることがあります。
choices:
disabled: 無効
enabled: 有効
cast_only: 影を落とすだけ
receive_only: 影を落とされるだけ
model:
name: 3Dモデル
description: glTF形式の3Dモデルを読み込んで表示することができます。地図上に追加後、URLを指定することで読み込まれます。
propertySchema:
default:
title: 3Dモデル
fields:
model:
title: URL
description: glTF形式のみ対応しています。
location:
title: 位置
height:
title: 高度
heightReference:
title: 高度の基準
description: 地形を基準とした相対的な高度にすることができます。デフォルトではWGS84楕円体からの絶対的な高度になります。
choices:
none: デフォルト
clamp: 地表に固定
relative: 地表からの高度
heading:
title: ヘッディング
pitch:
title: ピッチ
roll:
title: ロール
scale:
title: スケール
description: 3Dモデルを設定値分等倍して表示します。
maximumScale:
title: 最大スケール
minimumPixelSize:
title: 最小表示サイズ
animation:
title: アニメーション
description: アニメーションを有効にします。必ずシーンのアニメーションの設定も有効にしてください。
appearance:
title: 外観
fields:
shadows:
title: 影
description: 影を表示します。必ずシーンの影の設定も有効にしてください。レンダリングが重くなることがあります。
choices:
disabled: 無効
enabled: 有効
cast_only: 影を落とすだけ
receive_only: 影を落とされるだけ
colorBlend:
title: 色のブレンド
choices:
none: 無効
highlight: ハイライト
replace: 置き換え
mix: 混合
color:
title: 色
colorBlendAmount:
title: 色の混合量
lightColor:
title: 照明色
silhouette:
title: シルエット
silhouetteColor:
title: シルエット色
silhouetteSize:
title: シルエットサイズ
tileset:
name: 3Dタイル
description: 3D Tiles形式の3Dタイルを表示することができます。
propertySchema:
default:
title: 3Dタイル
fields:
sourceType:
title: 種類
description: 3Dタイルの種類を選択します。
choices:
url: URL
osm: OSM Buildings
tileset:
title: タイルセットURL
description: 3Dタイルデータ内の tileset.json のURL
styleUrl:
title: スタイルURL
description: 3D Tiles styles が記述されたJSONのURL。スタイルを適用することができます。設定は任意です。
shadows:
title: 影
description: 影を表示します。必ずシーンの影の設定も有効にしてください。レンダリングが重くなることがあります。
choices:
disabled: 無効
enabled: 有効
cast_only: 影を落とすだけ
receive_only: 影を落とされるだけ
resource:
name: ファイル
description: 外部からデータをインポートすることができます。地図上に追加後、URLを指定することで外部データが読み込まれます。
propertySchema:
default:
title: ファイル
fields:
url:
title: ファイル URL
choices:
auto: 自動
kml: KML
geojson: GeoJSON / TopoJSON
czml: CZML
clampToGround:
title: 地表に固定
description: 地表の凹凸に沿うようにポリゴンなどのデータを表示します。
textblock:
name: テキスト
description: Textブロック
propertySchema:
default:
title: テキストブロック
fields:
title:
title: タイトル
text:
title: コンテンツ
markdown:
title: マークダウン
paddingTop:
title: 余白上
description: "上端の余白を設定します。最小0px・最大40ox"
paddingBottom:
title: 余白下
description: "下端の余白を設定します。最小0px・最大40ox"
paddingLeft:
title: 余白左
description: "左端の余白を設定します。最小0px・最大40ox"
paddingRight:
title: 余白右
description: "右端の余白を設定します。最小0px・最大40ox"
typography:
title: フォント
imageblock:
name: 画像
description: 画像ブロック
propertySchema:
default:
title: 画像ブロック
fields:
image:
title: 画像
title:
title: タイトル
fullSize:
title: フルサイズ
imageSize:
title: 画像サイズ
choices:
cover: カバー
contain: 含む
imagePositionX:
title: 水平位置
choices:
left: 左
center: 中央
right: 右
imagePositionY:
title: 垂直位置
choices:
top: 上
center: 中央
bottom: 下
videoblock:
name: 動画
description: 動画ブロック
propertySchema:
default:
title: 動画ブロック
fields:
url:
title: 動画 URL
title:
title: タイトル
fullSize:
title: フルサイズ
locationblock:
name: 位置情報
description: 位置情報ブロック
propertySchema:
default:
title: 位置情報ブロック
fields:
location:
title: 位置情報
title:
title: タイトル
fullSize:
title: フルサイズ
dlblock:
name: 表
description: 表ブロック
propertySchema:
default:
title: 表ブロック
fields:
title:
title: タイトル
typography:
title: フォント
items:
title: アイテム
fields:
item_title:
title: タイトル
item_datatype:
title: 種類
choices:
string: 文字
number: 数字
item_datastr:
title: データ(文字)
item_datanum:
title: データ(数字)
htmlblock:
name: HTML
description: HTMLブロック
propertySchema:
default:
title: HTMLブロック
fields:
title:
title: タイトル
html:
title: HTML
menu:
name: メニュー (廃止予定)
description: |
シーンにボタンを設置し、メニューを表示します。追加したボタンに設定されたアクションタイプによって動作が変わります。
・リンク:ボタン自体が外部サイトへのリンクになります。
・メニュー:追加したメニューを開きます。
・カメラアクション:クリック時にカメラを移動します。
propertySchema:
buttons:
title: ボタン
fields:
buttonInvisible:
title: 非表示
buttonTitle:
title: タイトル
buttonPosition:
title: 表示位置
choices:
topleft: 上左
topright: 上右
bottomleft: 下左
bottomright: 下右
buttonStyle:
title: 表示方法
choices:
text: テキストのみ
icon: アイコンのみ
texticon: テキスト+アイコン
buttonIcon:
title: アイコン
buttonColor:
title: テキスト色
buttonBgcolor:
title: 背景色
buttonType:
title: アクション
choices:
link: リンク
menu: メニュー開閉
camera: カメラ移動
buttonLink:
title: リンク
buttonCamera:
title: カメラ
menu:
title: メニュー
fields:
menuTitle:
title: タイトル
menuIcon:
title: アイコン
menuType:
title: アクション
choices:
link: リンク
camera: カメラ移動
border: 区切り線
menuLink:
title: リンク
menuCamera:
title: カメラ
button:
name: ボタン
description: |
シーンにボタンを設置し、メニューを表示します。追加したボタンに設定されたアクションタイプによって動作が変わります。
・リンク:ボタン自体が外部サイトへのリンクになります。
・メニュー:追加したメニューを開きます。
・カメラアクション:クリック時にカメラを移動します。
propertySchema:
default:
title: デフォルト
fields:
buttonTitle:
title: タイトル
buttonStyle:
title: 表示方法
choices:
text: テキストのみ
icon: アイコンのみ
texticon: テキスト+アイコン
buttonIcon:
title: アイコン
buttonColor:
title: テキスト色
buttonBgcolor:
title: 背景色
buttonType:
title: アクション
choices:
link: リンク
menu: メニュー開閉
camera: カメラ移動
buttonLink:
title: リンク
buttonCamera:
title: カメラ
visible:
title: 表示
choices:
always: 常に
desktop: デスクトップのみ
mobile: モバイルのみ
menu:
title: メニュー
fields:
menuTitle:
title: タイトル
menuIcon:
title: アイコン