-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.yml
More file actions
2733 lines (2733 loc) · 81.8 KB
/
Copy pathmanifest.yml
File metadata and controls
2733 lines (2733 loc) · 81.8 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
$schema: ../../schemas/plugin_manifest.json
id: reearth
system: true
name: Re:Earth Official Plugin
description: Official Plugin
author: Re:Earth
extensions:
- id: cesium-beta
name: Cesium Beta
description: Description
visualizer: cesium
type: visualizer
schema:
groups:
- id: default
collection: main
title: Main
fields:
- id: sceneMode
type: string
title: Scene mode
description: Specify scene mode.
defaultValue: 3d
choices:
- key: 3d
label: 3D
- key: 2d
label: 2D
- key: columbus
label: 2.5D (Columbus View)
- id: ion
type: string
title: Cesium Ion API access token
description: Cesium Ion account users may use their personal API keys to be able to use their Cesium Ion assets(tile data, 3D data, etc) with their project.
- id: vr
type: bool
title: VR
description: Enable VR mode to split the screen into left and right.
- id: tiles
collection: tiles
title: Tiles
description: You may change the look of the Earth by obtaining map tile data and setting it here.
list: true
representativeField: tile_type
fields:
- id: tile_type
type: string
title: Tile type
defaultValue: default
choices:
- key: default
label: Default
- key: default_label
label: Labelled
- key: default_road
label: Road Map
- key: open_street_map
label: OpenStreetMap
- key: black_marble
label: Earth at night
- key: japan_gsi_standard
label: Japan GSI Standard Map
- key: url
label: URL
- id: tile_url
type: string
title: Tile map URL
availableIf:
field: tile_type
type: string
value: url
- id: tile_zoomLevel
type: array
title: zoom level
description: "Change the zoom level of the selected tile map. Min:0, Max:30"
defaultValue: [0,30]
ui: range
min: 0
max: 30
- id: tile_opacity
type: number
title: Opacity
description: "Change the opacity of the selected tile map. Min: 0 Max: 1"
defaultValue: 1
ui: slider
min: 0
max: 1
- id: terrain
collection: terrain
title: Terrain
fields:
- id: terrain
type: bool
title: Enable
description: Show elevation when close to the surface.
- id: terrainType
type: string
title: Terrain type
description: Specify terrain type.
defaultValue: cesium
availableIf:
field: terrain
type: bool
value: true
choices:
- key: cesium
label: Cesium World Terrain
- key: arcgis
label: ArcGIS Terrain
- key: cesiumion
label: Cesium Ion
- id: terrainCesiumIonAsset
type: string
title: Terrain Cesium Ion asset ID
description: Specify the ID of a terrain asset registered on Cesium Ion.
availableIf:
field: terrainType
type: string
value: cesiumion
- id: terrainCesiumIonAccessToken
type: string
title: Terrain Cesium Ion access token
description: Specify a Cesium Ion access token if you want to override the access token in the scene-wide settings for this tile.
availableIf:
field: terrainType
type: string
value: cesiumion
- id: terrainCesiumIonUrl
type: string
title: Terrain URL
description: Specify the URL of Cesium's terrain server if it is delivered on-premises rather than Cesum Ion. This takes precedence over the asset ID setting.
availableIf:
field: terrainType
type: string
value: cesiumion
- id: terrainExaggeration
type: number
title: Terrain exaggeration
description: A scalar used to exaggerate the terrain. Defaults to 1.0 (no exaggeration). A value of 2.0 scales the terrain by 2x. A value of 0.0 makes the terrain completely flat.
defaultValue: 1
suffix: x
availableIf:
field: terrain
type: bool
value: true
- id: terrainExaggerationRelativeHeight
type: number
title: Terrain exaggeration relative height
description: The height from which terrain is exaggerated. Defaults to 0.0. Terrain that is above this height will scale upwards and terrain that is below this height will scale downwards.
defaultValue: 0
suffix: m
availableIf:
field: terrain
type: bool
value: true
- id: depthTestAgainstTerrain
type: bool
title: Hide objects under terrain
description: Hides objects under the terrain. Depending on the loading status of the terrain, objects may be shown or hidden.
availableIf:
field: terrain
type: bool
value: true
- id: globeLighting
collection: globe
title: Globe Lighting
fields:
- id: globeLighting
type: bool
title: Enable
defaultValue: false
description: This property will support the globe receive an Entity's Lighting.
- id: globeShadow
collection: globe
title: Globe Shadow
fields:
- id: globeShadow
type: bool
title: Enable
defaultValue: false
description: This property will support the globe receive an Entity's shadows.
- id: globeAtmosphere
collection: globe
title: Globe Atmosphere
fields:
- id: globeAtmosphere
type: bool
title: Enable
defaultValue: true
description: This setting handles the so-called atmosphere effect of Earth.
- id: globeAtmosphereIntensity
type: number
title: Light Intensity
description: "Change the light intensity of the selected tile map. Min: 0 Max: 30"
defaultValue: 10
ui: slider
min: 0
max: 30
availableIf:
field: globeAtmosphere
type: bool
value: true
- id: skyBox
collection: sky
title: Sky Box
fields:
- id: skyBox
type: bool
title: Enable
defaultValue: true
description: Description needed.
- id: sun
collection: sky
title: Sun
fields:
- id: sun
type: bool
title: Enable
defaultValue: true
description: Description needed.
- id: moon
collection: sky
title: Moon
fields:
- id: moon
type: bool
title: Enable
defaultValue: true
description: Description needed.
- id: skyAtmosphere
collection: sky
title: Sky Atmosphere
fields:
- id: skyAtmosphere
type: bool
title: Enable
defaultValue: true
description: Description neeeded.
- id: skyAtmosphereIntensity
type: number
title: Light Intensity
description: "Change the light intensity of the selected tile map. Min: 0 Max: 200"
defaultValue: 50
ui: slider
min: 0
max: 200
availableIf:
field: skyAtmosphere
type: bool
value: true
- id: camera
collection: camera
title: Camera
fields:
- id: camera
type: camera
title: Initial camera position
description: The starting position of your project.
- id: allowEnterGround
type: bool
title: Enter the ground
defaultValue: false
description: Set to true to allow the camera to enter the surface of the earth.
- id: fov
type: number
title: FOV
# description: Description needed
defaultValue: 3
ui: slider
min: 0
max: 10
- id: cesium
name: Cesium
description: Select here to find scene settings in the right panel. This includes setting map tiles, atmospheric conditions, real lighting, and more.
visualizer: cesium
type: visualizer
schema:
groups:
- id: default
title: Scene
fields:
- id: camera
type: camera
title: Initial camera position
description: The starting position of your project.
- id: allowEnterGround
type: bool
title: Enter the ground
defaultValue: false
description: Set to true to allow the camera to enter the surface of the earth.
- id: sceneMode
type: string
title: Scene mode
description: Specify scene mode.
defaultValue: 3d
choices:
- key: 3d
label: Scene 3D
- key: 2d
label: Scene 2D
- key: columbus
label: Columbus View
- id: skybox
type: bool
title: Sky
defaultValue: true
description: Show the stars.
- id: bgcolor
type: string
title: Background color
description: With Sky disabled, choose a background color.
ui: color
- id: ion
type: string
title: Cesium Ion API access token
description: Cesium Ion account users may use their personal API keys to be able to use their Cesium Ion assets(tile data, 3D data, etc) with their project.
- id: vr
type: bool
title: VR
description: Enable VR mode to split the screen into left and right.
- id: tiles
title: Tiles
description: You may change the look of the Earth by obtaining map tile data and setting it here.
list: true
representativeField: tile_type
fields:
- id: tile_type
type: string
title: Tile type
defaultValue: default
choices:
- key: default
label: Default
- key: default_label
label: Labelled
- key: default_road
label: Road Map
- key: stamen_watercolor
label: Stamen Watercolor
- key: stamen_toner
label: Stamen Toner
- key: open_street_map
label: OpenStreetMap
- key: esri_world_topo
label: ESRI Topography
- key: black_marble
label: Earth at night
- key: japan_gsi_standard
label: Japan GSI Standard Map
- key: url
label: URL
- id: tile_url
type: string
title: Tile map URL
availableIf:
field: tile_type
type: string
value: url
- id: tile_minLevel
type: number
title: Minimum zoom level
min: 0
max: 30
- id: tile_maxLevel
type: number
title: Maximum zoom level
min: 0
max: 30
- id: tile_opacity
type: number
title: Opacity
description: "Change the opacity of the selected tile map. Min: 0 Max: 1"
defaultValue: 1
ui: slider
min: 0
max: 1
- id: terrain
title: Terrain
fields:
- id: terrain
type: bool
title: Terrain
description: Show elevation when close to the surface.
- id: terrainType
type: string
title: Terrain type
description: Specify terrain type.
defaultValue: cesium
choices:
- key: cesium
label: Cesium World Terrain
- key: arcgis
label: ArcGIS Terrain
- key: cesiumion
label: Cesium Ion
- id: terrainCesiumIonAsset
type: string
title: Terrain Cesium Ion asset ID
description: Specify the ID of a terrain asset registered on Cesium Ion.
availableIf:
field: terrainType
type: string
value: cesiumion
- id: terrainCesiumIonAccessToken
type: string
title: Terrain Cesium Ion access token
description: Specify a Cesium Ion access token if you want to override the access token in the scene-wide settings for this tile.
availableIf:
field: terrainType
type: string
value: cesiumion
- id: terrainCesiumIonUrl
type: string
title: Terrain URL
description: Specify the URL of Cesium's terrain server if it is delivered on-premises rather than Cesum Ion. This takes precedence over the asset ID setting.
availableIf:
field: terrainType
type: string
value: cesiumion
- id: terrainExaggeration
type: number
title: Terrain exaggeration
description: A scalar used to exaggerate the terrain. Defaults to 1.0 (no exaggeration). A value of 2.0 scales the terrain by 2x. A value of 0.0 makes the terrain completely flat.
defaultValue: 1
suffix: x
- id: terrainExaggerationRelativeHeight
type: number
title: Terrain exaggeration relative height
description: The height from which terrain is exaggerated. Defaults to 0.0. Terrain that is above this height will scale upwards and terrain that is below this height will scale downwards.
defaultValue: 0
suffix: m
- id: depthTestAgainstTerrain
type: bool
title: Hide objects under terrain
description: Hides objects under the terrain. Depending on the loading status of the terrain, objects may be shown or hidden.
- id: indicator
title: Indicator
description: Set the style of indicator shown when selecting a layer on the map.
fields:
- id: indicator_type
type: string
title: Type
defaultValue: default
description: Choose how the indicator will look.
choices:
- key: default
label: Default
- key: crosshair
label: Crosshair
- key: custom
label: Custom
- id: indicator_image
type: url
title: Image URL
ui: image
availableIf:
field: indicator_type
type: string
value: custom
- id: indicator_image_scale
type: number
title: Image scale
availableIf:
field: indicator_type
type: string
value: custom
- id: theme
title: Publish Theme
description: Set your theme.
fields:
- id: themeType
type: string
title: Theme
defaultValue: dark
description: Select the theme.
choices:
- key: dark
label: Re:Earth Dark
- key: light
label: Re:Earth Light
- key: forest
label: Forest
- key: custom
label: Custom theme
- id: themeTextColor
type: string
ui: color
title: Text color
description: Select a color.
defaultValue: "#434343"
availableIf:
field: themeType
type: string
value: custom
- id: themeSelectColor
type: string
ui: color
title: Select color
description: Select a color.
defaultValue: "#C52C63"
availableIf:
field: themeType
type: string
value: custom
- id: themeBackgroundColor
type: string
ui: color
title: Background color
description: Select a color.
defaultValue: "#DFE5F0"
availableIf:
field: themeType
type: string
value: custom
- id: atmosphere
title: Atmospheric Conditions
description: Set the look and feel of the Earth.
fields:
- id: enable_sun
type: bool
title: Sun
defaultValue: true
description: Display the Sun.
- id: enable_lighting
type: bool
title: Lighting
defaultValue: false
description: Display natural lighting from the sun.
- id: ground_atmosphere
type: bool
title: Ground atmosphere
defaultValue: true
description: Display a lower atmospheric layer.
- id: sky_atmosphere
type: bool
title: Sky atmosphere
defaultValue: true
description: Display an upper atmospheric layer.
- id: shadows
type: bool
title: Shadow
description: Display shadows on the Earth. Shadows for each layers should be also enabled to see them.
- id: fog
type: bool
title: Fog
defaultValue: true
description: Display customizable fog.
- id: fog_density
type: number
title: Fog density
defaultValue: 2.0e-4
description: "Set a thickness to the fog. Min: 0 Max: 1"
min: 0
max: 1
- id: brightness_shift
type: number
title: Fog brightness
defaultValue: 0.03
description: "Set brightness of the fog. Min: -1 Max: 1"
min: -1
max: 1
- id: hue_shift
type: number
title: Fog hue
description: "Set hue of the fog. Min: -1 Max: 1"
min: -1
max: 1
- id: surturation_shift
type: number
title: Fog saturation
description: "Set saturation of the fog. Min: -1 Max: 1"
min: -1
max: 1
- id: timeline
title: Timeline
fields:
- id: animation
type: bool
title: Animation
defaultValue: false
description: Enables animation play. If enabled, each 3D models can animate.
- id: visible
type: bool
title: Timeline
description: Whether the timeline UI is displayed or not
- id: current
type: string
title: Current time
ui: datetime
- id: start
type: string
title: Start time
description: If nothing is set, it will be set automatically according to the data being displayed.
ui: datetime
- id: stop
type: string
title: Stop time
description: If nothing is set, it will be set automatically according to the data being displayed.
ui: datetime
- id: stepType
type: string
title: Tick type
defaultValue: rate
description: How to specify the playback speed
choices:
- key: rate
label: Rate
- key: fixed
label: Fixed
- id: multiplier
type: number
title: Multiplier
description: Specifies the playback speed as a multiple of the real time speed. Negative values can also be specified. Default is 1x.
defaultValue: 1
prefix: x
availableIf:
field: stepType
type: string
value: rate
- id: step
type: number
title: Step
description: Specifies the playback speed in seconds. Each time the screen is repeatedly drawn, it advances by the specified specified number of seconds. Negative values can also be specified. The default is 1 second.
defaultValue: 1
suffix: s
availableIf:
field: stepType
type: string
value: fixed
- id: rangeType
type: string
title: Range
description: Specifies the playback speed in seconds. Negative values can also be specified.
defaultValue: unbounded
choices:
- key: unbounded
label: Unbounded
- key: clamped
label: Clamped
- key: bounced
label: Bounced
- id: cameraLimiter
title: Camera Limiter
description: Set the camera limiting box.
fields:
- id: cameraLimitterEnabled
type: bool
title: Enable
defaultValue: false
description: Enable camera limiter.
- id: cameraLimitterShowHelper
type: bool
title: Show helper
defaultValue: false
description: Display the limiter boundaries.
- id: cameraLimitterTargetArea
type: camera
title: Target max height
description: The base position of the camera movement range. This position is the center point of the limit box in the horizontal and depth directions, and is the maximum height of the movable range. The camera will not be able to zoom out beyond the height specified here.
- id: cameraLimitterTargetWidth
type: number
title: Target width
description: Specifies the width (longitude direction) of the box that represents the limiter boundaries.
min: 5
defaultValue: 1000000
suffix: m
- id: cameraLimitterTargetLength
type: number
title: Target length
description: Specifies the depth (latitude direction) of the box that represents the limiter boundaries.
min: 5
defaultValue: 1000000
suffix: m
- id: googleAnalytics
title: Google Analytics
description: Set your Google Analytics tracking ID and analyze how your published project is being viewed.
fields:
- id: enableGA
type: bool
title: Enable
defaultValue: false
description: Enable Google Analytics
- id: trackingId
type: string
title: Tracking ID
description: Paste your Google Analytics tracking ID here. This will be embedded in your published project.
- id: experimental
title: Advanced
fields:
- id: experimental_core
type: bool
title: Enable advanced features
defaultValue: false
description: Enable advanced features for this scene. (beta)
- id: experimental_sandbox
type: bool
title: Enable sandbox (alpha)
defaultValue: false
description: Enable sandbox for plugin iframes. (alpha)
linkable:
url:
schemaGroupId: indicator
fieldId: indicator_image
- id: infobox
name: Infobox
type: infobox
description: Create an information area that appears when a layer is highlighted. Text, pictures, video, etc can be added to an infobox.
schema:
groups:
- id: default
title: Basic
fields:
- id: title
type: string
title: Title
- id: showTitle
type: bool
title: Show title
defaultValue: true
- id: position
type: string
title: Position
defaultValue: right
choices:
- key: right
label: Right
- key: middle
label: Middle
- key: left
label: Left
- id: size
type: string
title: Width
defaultValue: small
choices:
- key: small
label: Small
- key: medium
label: Medium
- key: large
label: Large
- id: heightType
type: string
title: Height type
defaultValue: auto
choices:
- key: auto
label: Auto
- key: manual
label: Manual
- id: height
type: number
title: Height
min: 284
max: 2048
suffix: px
description: "This sets the infobox height. Min: 284 Max: 2048"
availableIf:
field: heightType
type: string
value: manual
- id: infoboxPaddingTop
type: number
title: Top padding
min: 0
max: 40
suffix: px
description: "The space between the top of the infobox and the title. Min: 0 Max: 40"
- id: infoboxPaddingBottom
type: number
title: Bottom padding
min: 0
max: 40
suffix: px
description: "The space between the bottom of the infobox and the last block. Min: 0 Max: 40"
- id: infoboxPaddingLeft
type: number
title: Left padding
min: 0
max: 40
suffix: px
description: "The space between the left side of the infobox and the title and blocks. Min: 0 Max: 40"
- id: infoboxPaddingRight
type: number
title: Right padding
min: 0
max: 40
suffix: px
description: "The space between the right side of the infobox and the title and blocks. Min: 0 Max: 40"
- id: bgcolor
type: string
title: Background color
ui: color
- id: outlineWidth
type: number
title: Outline width
suffix: px
max: 20
- id: outlineColor
type: string
title: Outline color
ui: color
- id: useMask
type: bool
title: Use mask
- id: typography
type: typography
title: Font
- id: marker
visualizer: cesium
type: primitive
name: Marker
description: A standard map marker.
schema:
groups:
- id: default
title: Marker
fields:
- id: location
type: latlng
title: Location
- id: height
type: number
title: Height
defaultValue: 0
min: 0
suffix: m
- id: heightReference
type: string
title: Height standard
description: The position relative to the terrain. By default, it is the absolute altitude from the WGS84 ellipsoid.
defaultValue: none
choices:
- key: none
label: Absolute
- key: clamp
label: Clamp to ground
- key: relative
label: Relative to ground
- id: style
type: string
title: Style
defaultValue: image
choices:
- key: point
label: Point
- key: image
label: Icon
- id: pointColor
type: string
title: Point color
ui: color
availableIf:
field: style
type: string
value: point
- id: pointSize
type: number
title: Point size
defaultValue: 10
min: 0
suffix: px
availableIf:
field: style
type: string
value: point
- id: pointOutlineColor
type: string
title: Point outline color
ui: color
availableIf:
field: style
type: string
value: point
- id: pointOutlineWidth
type: number
title: Point outline width
availableIf:
field: style
type: string
value: point
- id: image
type: url
title: Image URL
ui: image
availableIf:
field: style
type: string
value: image
- id: imageSize
type: number
title: Image scale
defaultValue: 1
min: 0
availableIf:
field: style
type: string
value: image
- id: imageHorizontalOrigin
type: string
title: Image horizontal origin
defaultValue: center
choices:
- key: left
label: Left
- key: center
label: Center
- key: right
label: Right
availableIf:
field: style
type: string
value: image
- id: imageVerticalOrigin
type: string
title: Image vertical origin
defaultValue: center
choices:
- key: top
label: Top
- key: center
label: Center
- key: baseline
label: Baseline
- key: bottom
label: Bottom
availableIf:
field: style
type: string
value: image
- id: imageColor
type: string
title: Image color
ui: color
availableIf:
field: style
type: string
value: image
- id: imageCrop
type: string
title: Image crop
defaultValue: none
choices:
- key: none
label: None
# - key: rounded
# label: Rounded
- key: circle
label: Circle
availableIf:
field: style
type: string
value: image
- id: imageShadow
type: bool
title: Image shadow
availableIf:
field: style
type: string
value: image
- id: imageShadowColor
type: string
title: Shadow color
ui: color
availableIf:
field: style
type: string
value: image
- id: imageShadowBlur
type: number
title: Shadow radius
defaultValue: 3
suffix: px
availableIf:
field: style
type: string
value: image
- id: imageShadowPositionX
type: number
title: Shadow X
suffix: px
defaultValue: 0
availableIf:
field: style
type: string
value: image
- id: imageShadowPositionY
type: number
title: Shadow Y
suffix: px
defaultValue: 0
availableIf:
field: style
type: string
value: image
- id: label
type: bool
title: Label
- id: labelText
type: string