EarthSDK
    正在准备搜索索引...

    类型别名 FeatureColorJsonType

    特征颜色的JSON类型定义。 用于根据属性值范围或特定值设置特征的颜色。

    type FeatureColorJsonType = {
        maxValue?: number;
        minValue?: number;
        rgba: ESJColor;
        value?: string | number;
    }
    索引

    属性

    maxValue?: number

    属性值的最大值。

    minValue?: number

    属性值的最小值。

    rgba: ESJColor

    颜色值,类型为ESJColor。

    value?: string | number

    属性的特定值,可以是字符串或数字。