Skip to content

KBE3D / KBCore / Cesium / Cesium3DTileStyle

类: Cesium3DTileStyle

A style that is applied to a Cesium3DTileset. <p> Evaluates an expression defined using the 3D Tiles Styling language

. </p>

Examples

ts
tileset.style = new Cesium.Cesium3DTileStyle({
    color : {
        conditions : [
            ['${Height} >= 100', 'color("purple", 0.5)'],
            ['${Height} >= 50', 'color("red")'],
            ['true', 'color("blue")']
        ]
    },
    show : '${Height} > 0',
    meta : {
        description : '"Building id ${id} has height ${Height}."'
    }
});
ts
tileset.style = new Cesium.Cesium3DTileStyle({
    color : 'vec4(${Temperature})',
    pointSize : '${Temperature} * 2.0'
});

参数

An object defining a style.

属性

style

readonly style: any

Gets the object defining the style using the 3D Tiles Styling language

.


show

show: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>show</code> property. Alternatively a boolean, string, or object defining a show style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return or convert to a <code>Boolean</code>. </p> <p> This expression is applicable to all tile formats. </p>

Examples

ts
const style = new Cesium3DTileStyle({
    show : '(regExp("^Chest").test(${County})) && (${YearBuilt} >= 1970)'
});
style.show.evaluate(feature); // returns true or false depending on the feature's properties
ts
const style = new Cesium.Cesium3DTileStyle();
// Override show expression with a custom function
style.show = {
    evaluate : function(feature) {
        return true;
    }
};
ts
const style = new Cesium.Cesium3DTileStyle();
// Override show expression with a boolean
style.show = true;
};
ts
const style = new Cesium.Cesium3DTileStyle();
// Override show expression with a string
style.show = '${Height} > 0';
};
ts
const style = new Cesium.Cesium3DTileStyle();
// Override show expression with a condition
style.show = {
    conditions: [
        ['${height} > 2', 'false'],
        ['true', 'true']
    ];
};

color

color: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>color</code> property. Alternatively a string or object defining a color style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Color</code>. </p> <p> This expression is applicable to all tile formats. </p>

Examples

ts
const style = new Cesium3DTileStyle({
    color : '(${Temperature} > 90) ? color("red") : color("white")'
});
style.color.evaluateColor(feature, result); // returns a Cesium.Color object
ts
const style = new Cesium.Cesium3DTileStyle();
// Override color expression with a custom function
style.color = {
    evaluateColor : function(feature, result) {
        return Cesium.Color.clone(Cesium.Color.WHITE, result);
    }
};
ts
const style = new Cesium.Cesium3DTileStyle();
// Override color expression with a string
style.color = 'color("blue")';
ts
const style = new Cesium.Cesium3DTileStyle();
// Override color expression with a condition
style.color = {
    conditions : [
        ['${height} > 2', 'color("cyan")'],
        ['true', 'color("blue")']
    ]
};

pointSize

pointSize: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>pointSize</code> property. Alternatively a string or object defining a point size style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Number</code>. </p> <p> This expression is only applicable to point features in a Vector tile or a Point Cloud tile. </p>

Examples

ts
const style = new Cesium3DTileStyle({
    pointSize : '(${Temperature} > 90) ? 2.0 : 1.0'
});
style.pointSize.evaluate(feature); // returns a Number
ts
const style = new Cesium.Cesium3DTileStyle();
// Override pointSize expression with a custom function
style.pointSize = {
    evaluate : function(feature) {
        return 1.0;
    }
};
ts
const style = new Cesium.Cesium3DTileStyle();
// Override pointSize expression with a number
style.pointSize = 1.0;
ts
const style = new Cesium.Cesium3DTileStyle();
// Override pointSize expression with a string
style.pointSize = '${height} / 10';
ts
const style = new Cesium.Cesium3DTileStyle();
// Override pointSize expression with a condition
style.pointSize =  {
    conditions : [
        ['${height} > 2', '1.0'],
        ['true', '2.0']
    ]
};

pointOutlineColor

pointOutlineColor: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>pointOutlineColor</code> property. Alternatively a string or object defining a color style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Color</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium.Cesium3DTileStyle();
// Override pointOutlineColor expression with a string
style.pointOutlineColor = 'color("blue")';
ts
const style = new Cesium.Cesium3DTileStyle();
// Override pointOutlineColor expression with a condition
style.pointOutlineColor = {
    conditions : [
        ['${height} > 2', 'color("cyan")'],
        ['true', 'color("blue")']
    ]
};

pointOutlineWidth

pointOutlineWidth: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>pointOutlineWidth</code> property. Alternatively a string or object defining a number style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Number</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium.Cesium3DTileStyle();
// Override pointOutlineWidth expression with a string
style.pointOutlineWidth = '5';
ts
const style = new Cesium.Cesium3DTileStyle();
// Override pointOutlineWidth expression with a condition
style.pointOutlineWidth = {
    conditions : [
        ['${height} > 2', '5'],
        ['true', '0']
    ]
};

labelColor

labelColor: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>labelColor</code> property. Alternatively a string or object defining a color style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Color</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium.Cesium3DTileStyle();
// Override labelColor expression with a string
style.labelColor = 'color("blue")';
ts
const style = new Cesium.Cesium3DTileStyle();
// Override labelColor expression with a condition
style.labelColor = {
    conditions : [
        ['${height} > 2', 'color("cyan")'],
        ['true', 'color("blue")']
    ]
};

labelOutlineColor

labelOutlineColor: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>labelOutlineColor</code> property. Alternatively a string or object defining a color style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Color</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium.Cesium3DTileStyle();
// Override labelOutlineColor expression with a string
style.labelOutlineColor = 'color("blue")';
ts
const style = new Cesium.Cesium3DTileStyle();
// Override labelOutlineColor expression with a condition
style.labelOutlineColor = {
    conditions : [
        ['${height} > 2', 'color("cyan")'],
        ['true', 'color("blue")']
    ]
};

labelOutlineWidth

labelOutlineWidth: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>labelOutlineWidth</code> property. Alternatively a string or object defining a number style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Number</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium.Cesium3DTileStyle();
// Override labelOutlineWidth expression with a string
style.labelOutlineWidth = '5';
ts
const style = new Cesium.Cesium3DTileStyle();
// Override labelOutlineWidth expression with a condition
style.labelOutlineWidth = {
    conditions : [
        ['${height} > 2', '5'],
        ['true', '0']
    ]
};

font

font: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>font</code> property. Alternatively a string or object defining a string style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>String</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium3DTileStyle({
    font : '(${Temperature} > 90) ? "30px Helvetica" : "24px Helvetica"'
});
style.font.evaluate(feature); // returns a String
ts
const style = new Cesium.Cesium3DTileStyle();
// Override font expression with a custom function
style.font = {
    evaluate : function(feature) {
        return '24px Helvetica';
    }
};

labelStyle

labelStyle: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>label style</code> property. Alternatively a string or object defining a number style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>LabelStyle</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium3DTileStyle({
    labelStyle : `(\${Temperature} > 90) ? ${LabelStyle.FILL_AND_OUTLINE} : ${LabelStyle.FILL}`
});
style.labelStyle.evaluate(feature); // returns a LabelStyle
ts
const style = new Cesium.Cesium3DTileStyle();
// Override labelStyle expression with a custom function
style.labelStyle = {
    evaluate : function(feature) {
        return LabelStyle.FILL;
    }
};

labelText

labelText: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>labelText</code> property. Alternatively a string or object defining a string style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>String</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium3DTileStyle({
    labelText : '(${Temperature} > 90) ? ">90" : "<=90"'
});
style.labelText.evaluate(feature); // returns a String
ts
const style = new Cesium.Cesium3DTileStyle();
// Override labelText expression with a custom function
style.labelText = {
    evaluate : function(feature) {
        return 'Example label text';
    }
};

backgroundColor

backgroundColor: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>backgroundColor</code> property. Alternatively a string or object defining a color style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Color</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium.Cesium3DTileStyle();
// Override backgroundColor expression with a string
style.backgroundColor = 'color("blue")';
ts
const style = new Cesium.Cesium3DTileStyle();
// Override backgroundColor expression with a condition
style.backgroundColor = {
    conditions : [
        ['${height} > 2', 'color("cyan")'],
        ['true', 'color("blue")']
    ]
};

backgroundPadding

backgroundPadding: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>backgroundPadding</code> property. Alternatively a string or object defining a vec2 style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Cartesian2</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

示例

ts
const style = new Cesium.Cesium3DTileStyle();
// Override backgroundPadding expression with a string
style.backgroundPadding = 'vec2(5.0, 7.0)';
style.backgroundPadding.evaluate(feature); // returns a Cartesian2

backgroundEnabled

backgroundEnabled: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>backgroundEnabled</code> property. Alternatively a string or object defining a boolean style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Boolean</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium.Cesium3DTileStyle();
// Override backgroundEnabled expression with a string
style.backgroundEnabled = 'true';
ts
const style = new Cesium.Cesium3DTileStyle();
// Override backgroundEnabled expression with a condition
style.backgroundEnabled = {
    conditions : [
        ['${height} > 2', 'true'],
        ['true', 'false']
    ]
};

scaleByDistance

scaleByDistance: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>scaleByDistance</code> property. Alternatively a string or object defining a vec4 style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Cartesian4</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

示例

ts
const style = new Cesium.Cesium3DTileStyle();
// Override scaleByDistance expression with a string
style.scaleByDistance = 'vec4(1.5e2, 2.0, 1.5e7, 0.5)';
style.scaleByDistance.evaluate(feature); // returns a Cartesian4

translucencyByDistance

translucencyByDistance: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>translucencyByDistance</code> property. Alternatively a string or object defining a vec4 style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Cartesian4</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

示例

ts
const style = new Cesium.Cesium3DTileStyle();
// Override translucencyByDistance expression with a string
style.translucencyByDistance = 'vec4(1.5e2, 1.0, 1.5e7, 0.2)';
style.translucencyByDistance.evaluate(feature); // returns a Cartesian4

distanceDisplayCondition

distanceDisplayCondition: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>distanceDisplayCondition</code> property. Alternatively a string or object defining a vec2 style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Cartesian2</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

示例

ts
const style = new Cesium.Cesium3DTileStyle();
// Override distanceDisplayCondition expression with a string
style.distanceDisplayCondition = 'vec2(0.0, 5.5e6)';
style.distanceDisplayCondition.evaluate(feature); // returns a Cartesian2

heightOffset

heightOffset: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>heightOffset</code> property. Alternatively a string or object defining a number style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Number</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium.Cesium3DTileStyle();
// Override heightOffset expression with a string
style.heightOffset = '2.0';
ts
const style = new Cesium.Cesium3DTileStyle();
// Override heightOffset expression with a condition
style.heightOffset = {
    conditions : [
        ['${height} > 2', '4.0'],
        ['true', '2.0']
    ]
};

anchorLineEnabled

anchorLineEnabled: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>anchorLineEnabled</code> property. Alternatively a string or object defining a boolean style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Boolean</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium.Cesium3DTileStyle();
// Override anchorLineEnabled expression with a string
style.anchorLineEnabled = 'true';
ts
const style = new Cesium.Cesium3DTileStyle();
// Override anchorLineEnabled expression with a condition
style.anchorLineEnabled = {
    conditions : [
        ['${height} > 2', 'true'],
        ['true', 'false']
    ]
};

anchorLineColor

anchorLineColor: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>anchorLineColor</code> property. Alternatively a string or object defining a color style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Color</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium.Cesium3DTileStyle();
// Override anchorLineColor expression with a string
style.anchorLineColor = 'color("blue")';
ts
const style = new Cesium.Cesium3DTileStyle();
// Override anchorLineColor expression with a condition
style.anchorLineColor = {
    conditions : [
        ['${height} > 2', 'color("cyan")'],
        ['true', 'color("blue")']
    ]
};

image

image: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>image</code> property. Alternatively a string or object defining a string style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>String</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium3DTileStyle({
    image : '(${Temperature} > 90) ? "/url/to/image1" : "/url/to/image2"'
});
style.image.evaluate(feature); // returns a String
ts
const style = new Cesium.Cesium3DTileStyle();
// Override image expression with a custom function
style.image = {
    evaluate : function(feature) {
        return '/url/to/image';
    }
};

disableDepthTestDistance

disableDepthTestDistance: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>disableDepthTestDistance</code> property. Alternatively a string or object defining a number style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>Number</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

示例

ts
const style = new Cesium.Cesium3DTileStyle();
// Override disableDepthTestDistance expression with a string
style.disableDepthTestDistance = '1000.0';
style.disableDepthTestDistance.evaluate(feature); // returns a Number

horizontalOrigin

horizontalOrigin: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>horizontalOrigin</code> property. Alternatively a string or object defining a number style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>HorizontalOrigin</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium3DTileStyle({
    horizontalOrigin : HorizontalOrigin.LEFT
});
style.horizontalOrigin.evaluate(feature); // returns a HorizontalOrigin
ts
const style = new Cesium.Cesium3DTileStyle();
// Override horizontalOrigin expression with a custom function
style.horizontalOrigin = {
    evaluate : function(feature) {
        return HorizontalOrigin.CENTER;
    }
};

verticalOrigin

verticalOrigin: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>verticalOrigin</code> property. Alternatively a string or object defining a number style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>VerticalOrigin</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium3DTileStyle({
    verticalOrigin : VerticalOrigin.TOP
});
style.verticalOrigin.evaluate(feature); // returns a VerticalOrigin
ts
const style = new Cesium.Cesium3DTileStyle();
// Override verticalOrigin expression with a custom function
style.verticalOrigin = {
    evaluate : function(feature) {
        return VerticalOrigin.CENTER;
    }
};

labelHorizontalOrigin

labelHorizontalOrigin: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>labelHorizontalOrigin</code> property. Alternatively a string or object defining a number style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>HorizontalOrigin</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium3DTileStyle({
    labelHorizontalOrigin : HorizontalOrigin.LEFT
});
style.labelHorizontalOrigin.evaluate(feature); // returns a HorizontalOrigin
ts
const style = new Cesium.Cesium3DTileStyle();
// Override labelHorizontalOrigin expression with a custom function
style.labelHorizontalOrigin = {
    evaluate : function(feature) {
        return HorizontalOrigin.CENTER;
    }
};

labelVerticalOrigin

labelVerticalOrigin: StyleExpression

Gets or sets the StyleExpression object used to evaluate the style's <code>labelVerticalOrigin</code> property. Alternatively a string or object defining a number style can be used. The getter will return the internal Expression or ConditionsExpression, which may differ from the value provided to the setter. <p> The expression must return a <code>VerticalOrigin</code>. </p> <p> This expression is only applicable to point features in a Vector tile. </p>

Examples

ts
const style = new Cesium3DTileStyle({
    labelVerticalOrigin : VerticalOrigin.TOP
});
style.labelVerticalOrigin.evaluate(feature); // returns a VerticalOrigin
ts
const style = new Cesium.Cesium3DTileStyle();
// Override labelVerticalOrigin expression with a custom function
style.labelVerticalOrigin = {
    evaluate : function(feature) {
        return VerticalOrigin.CENTER;
    }
};

meta

meta: StyleExpression

Gets or sets the object containing application-specific expression that can be explicitly evaluated, e.g., for display in a UI.

示例

ts
const style = new Cesium3DTileStyle({
    meta : {
        description : '"Building id ${id} has height ${Height}."'
    }
});
style.meta.description.evaluate(feature); // returns a String with the substituted variables

构造函数

构造函数

new Cesium3DTileStyle(style?: any): Cesium3DTileStyle

参数

style?

any

返回

Cesium3DTileStyle

KBE3D @3.0.0 Copyright © 2024-present KBE3D