BIGEMAP卫星地图_高清卫星地图_北斗高清地图_地图软件_矢量地图数据_专题地图

BM3DTileStyle

應(yīng)用于BM3DTileset的樣式。

計(jì)算使用3D Tiles Styling language定義的表達(dá)式。

new BM3DTileStyle(style)
Parameters:
style ((Resource | String | Object)) 定義樣式的樣式或?qū)ο蟮腢RL。
Examples
tileset.style = new bmgl.BM3DTileStyle({
    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}."'
    }
});
tileset.style = new bmgl.BM3DTileStyle({
    color : 'vec4(${Temperature})',
    pointSize : '${Temperature} * 2.0'
});
See:

Members

anchorLineColor : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的anchorLineColor屬性的StyleExpression對(duì)象。或者,可以使用定義顏色樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Color

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

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

anchorLineEnabled : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的anchorLineEnabled屬性的StyleExpression對(duì)象?;蛘?,可以使用定義布爾樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Boolean

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

Examples:
var style = new bmgl.BM3DTileStyle();
// Override anchorLineEnabled expression with a string
style.anchorLineEnabled = 'true';
var style = new bmgl.BM3DTileStyle();
// Override anchorLineEnabled expression with a condition
style.anchorLineEnabled = {
    conditions : [
        ['${height} > 2', 'true'],
        ['true', 'false']
    ]
};

backgroundColor : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的backgroundColor屬性的StyleExpression對(duì)象?;蛘?,可以使用定義顏色樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Color。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

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

backgroundEnabled : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的backgroundEnabled屬性的StyleExpression對(duì)象?;蛘撸梢允褂枚x布爾樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Boolean。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

Examples:
var style = new bmgl.BM3DTileStyle();
// Override backgroundEnabled expression with a string
style.backgroundEnabled = 'true';
var style = new bmgl.BM3DTileStyle();
// Override backgroundEnabled expression with a condition
style.backgroundEnabled = {
    conditions : [
        ['${height} > 2', 'true'],
        ['true', 'false']
    ]
};

backgroundPadding : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的backgroundPadding屬性的StyleExpression對(duì)象?;蛘?,可以使用定義vec2樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Cartesian2。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

Example:
var style = new bmgl.BM3DTileStyle();
// Override backgroundPadding expression with a string
style.backgroundPadding = 'vec2(5.0, 7.0)';
style.backgroundPadding.evaluate(feature); // returns a Cartesian2

color : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的color屬性的StyleExpression對(duì)象?;蛘撸梢允褂枚x顏色樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Color。

此表達(dá)式適用于所有瓦片格式。

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

disableDepthTestDistance : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的disableDepthTestDistance屬性的StyleExpression對(duì)象?;蛘?,可以使用定義數(shù)字樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Number。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

Example:
var style = new bmgl.BM3DTileStyle();
// Override disableDepthTestDistance expression with a string
style.disableDepthTestDistance = '1000.0';
style.disableDepthTestDistance.evaluate(feature); // returns a Number

distanceDisplayCondition : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的distanceDisplayCondition屬性的StyleExpression對(duì)象。或者,可以使用定義vec2樣式的字符串或?qū)ο蟆etter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Cartesian2。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

Example:
var style = new bmgl.BM3DTileStyle();
// Override distanceDisplayCondition expression with a string
style.distanceDisplayCondition = 'vec2(0.0, 5.5e6)';
style.distanceDisplayCondition.evaluate(feature); // returns a Cartesian2

font : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的font屬性的StyleExpression對(duì)象?;蛘?,可以使用定義字符串樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回String

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

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

heightOffset : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的heightOffset屬性的StyleExpression對(duì)象?;蛘?,可以使用定義數(shù)字樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Number。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

Examples:
var style = new bmgl.BM3DTileStyle();
// Override heightOffset expression with a string
style.heightOffset = '2.0';
var style = new bmgl.BM3DTileStyle();
// Override heightOffset expression with a condition
style.heightOffset = {
    conditions : [
        ['${height} > 2', '4.0'],
        ['true', '2.0']
    ]
};

horizontalOrigin : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的horizontalOrigin屬性的StyleExpression對(duì)象。或者,可以使用定義數(shù)字樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回HorizontalOrigin。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

Examples:
var style = new BM3DTileStyle({
    horizontalOrigin : HorizontalOrigin.LEFT
});
style.horizontalOrigin.evaluate(feature); // returns a HorizontalOrigin
var style = new bmgl.BM3DTileStyle();
// Override horizontalOrigin expression with a custom function
style.horizontalOrigin = {
    evaluate : function(feature) {
        return HorizontalOrigin.CENTER;
    }
};

image : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的image屬性的StyleExpression對(duì)象?;蛘?,可以使用定義字符串樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回String。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

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

labelColor : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的labelColor屬性的StyleExpression對(duì)象?;蛘撸梢允褂枚x顏色樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Color。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

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

labelHorizontalOrigin : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的labelHorizontalOrigin屬性的StyleExpression對(duì)象。或者,可以使用定義數(shù)字樣式的字符串或?qū)ο蟆etter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回HorizontalOrigin。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

Examples:
var style = new BM3DTileStyle({
    labelHorizontalOrigin : HorizontalOrigin.LEFT
});
style.labelHorizontalOrigin.evaluate(feature); // returns a HorizontalOrigin
var style = new bmgl.BM3DTileStyle();
// Override labelHorizontalOrigin expression with a custom function
style.labelHorizontalOrigin = {
    evaluate : function(feature) {
        return HorizontalOrigin.CENTER;
    }
};

labelOutlineColor : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的labelOutlineColor屬性的StyleExpression對(duì)象。或者,可以使用定義顏色樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Color。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

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

labelOutlineWidth : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的labelOutlineWidth屬性的StyleExpression對(duì)象?;蛘?,可以使用定義數(shù)字樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Number

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

Examples:
var style = new bmgl.BM3DTileStyle();
// Override labelOutlineWidth expression with a string
style.labelOutlineWidth = '5';
var style = new bmgl.BM3DTileStyle();
// Override labelOutlineWidth expression with a condition
style.labelOutlineWidth = {
    conditions : [
        ['${height} > 2', '5'],
        ['true', '0']
    ]
};

labelStyle : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的label style屬性的StyleExpression對(duì)象?;蛘?,可以使用定義數(shù)字樣式的字符串或?qū)ο蟆etter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回LabelStyle。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

Examples:
var style = new BM3DTileStyle({
    labelStyle : '(${Temperature} > 90) ? ' + LabelStyle.FILL_AND_OUTLINE + ' : ' + LabelStyle.FILL
});
style.labelStyle.evaluate(feature); // returns a LabelStyle
var style = new bmgl.BM3DTileStyle();
// Override labelStyle expression with a custom function
style.labelStyle = {
    evaluate : function(feature) {
        return LabelStyle.FILL;
    }
};

labelText : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的labelText屬性的StyleExpression對(duì)象?;蛘撸梢允褂枚x字符串樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回String。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

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

labelVerticalOrigin : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的labelVerticalOrigin屬性的StyleExpression對(duì)象。或者,可以使用定義數(shù)字樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回VerticalOrigin。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

Examples:
var style = new BM3DTileStyle({
    labelVerticalOrigin : VerticalOrigin.TOP
});
style.labelVerticalOrigin.evaluate(feature); // returns a VerticalOrigin
var style = new bmgl.BM3DTileStyle();
// Override labelVerticalOrigin expression with a custom function
style.labelVerticalOrigin = {
    evaluate : function(feature) {
        return VerticalOrigin.CENTER;
    }
};

meta : StyleExpression

獲取或設(shè)置包含可顯式計(jì)算的特定于應(yīng)用程序的表達(dá)式的對(duì)象,例如,用于在UI中顯示。
Example:
var style = new BM3DTileStyle({
    meta : {
        description : '"Building id ${id} has height ${Height}."'
    }
});
style.meta.description.evaluate(feature); // returns a String with the substituted variables

pointOutlineColor : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的pointOutlineColor屬性的StyleExpression對(duì)象?;蛘?,可以使用定義顏色樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Color。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

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

pointOutlineWidth : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的pointOutlineWidth屬性的StyleExpression對(duì)象?;蛘?,可以使用定義數(shù)字樣式的字符串或?qū)ο蟆etter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Number。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

Examples:
var style = new bmgl.BM3DTileStyle();
// Override pointOutlineWidth expression with a string
style.pointOutlineWidth = '5';
var style = new bmgl.BM3DTileStyle();
// Override pointOutlineWidth expression with a condition
style.pointOutlineWidth = {
    conditions : [
        ['${height} > 2', '5'],
        ['true', '0']
    ]
};

pointSize : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的pointSize屬性的StyleExpression對(duì)象?;蛘?,可以使用定義點(diǎn)大小樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Number

此表達(dá)式僅適用于矢量瓦片或點(diǎn)云瓦片中的點(diǎn)特征。

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

(readonly) ready : Boolean

當(dāng)true時(shí),樣式已就緒,可以計(jì)算其表達(dá)式。當(dāng)使用對(duì)象構(gòu)建樣式時(shí),與URL相反,這是true立即。
Default Value: false

(readonly) readyPromise : Promise.<BM3DTileStyle>

獲取當(dāng)樣式就緒并且可以計(jì)算其表達(dá)式時(shí)將解決的承諾。

scaleByDistance : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的scaleByDistance屬性的StyleExpression對(duì)象?;蛘?,可以使用定義vec4樣式的字符串或?qū)ο蟆etter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Cartesian4

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

Example:
var style = new bmgl.BM3DTileStyle();
// Override scaleByDistance expression with a string
style.scaleByDistance = 'vec4(1.5e2, 2.0, 1.5e7, 0.5)';
style.scaleByDistance.evaluate(feature); // returns a Cartesian4

show : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的show屬性的StyleExpression對(duì)象。或者,可以使用定義顯示樣式的布爾值、字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回或轉(zhuǎn)換為Boolean

此表達(dá)式適用于所有瓦片格式。

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

(readonly) style : Object

獲取使用3D Tiles Styling language定義樣式的對(duì)象。
Default Value: {}

translucencyByDistance : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的translucencyByDistance屬性的StyleExpression對(duì)象?;蛘撸梢允褂枚xvec4樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回Cartesian4。

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

Example:
var style = new bmgl.BM3DTileStyle();
// Override translucencyByDistance expression with a string
style.translucencyByDistance = 'vec4(1.5e2, 1.0, 1.5e7, 0.2)';
style.translucencyByDistance.evaluate(feature); // returns a Cartesian4

verticalOrigin : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的verticalOrigin屬性的StyleExpression對(duì)象?;蛘?,可以使用定義數(shù)字樣式的字符串或?qū)ο?。getter將返回內(nèi)部ExpressionConditionsExpression,這可能與提供給setter的值不同。

表達(dá)式必須返回VerticalOrigin

此表達(dá)式僅適用于矢量瓦片中的點(diǎn)特征。

Experimental

This feature is using part of the 3D Tiles spec that is not final and is subject to change without bigemap-gl's standard deprecation policy.

Examples:
var style = new BM3DTileStyle({
    verticalOrigin : VerticalOrigin.TOP
});
style.verticalOrigin.evaluate(feature); // returns a VerticalOrigin
var style = new bmgl.BM3DTileStyle();
// Override verticalOrigin expression with a custom function
style.verticalOrigin = {
    evaluate : function(feature) {
        return VerticalOrigin.CENTER;
    }
};
主站蜘蛛池模板: 石膏砂浆生产线_特种砂浆生产线_轻质抹灰石膏设备-青岛环港重工科技有限公司 | 爬架网@建筑爬架网@冲孔建筑爬架网片@工地冲孔建筑爬架网片@工地冲孔建筑爬架网片厂家@工地冲孔建筑爬架网片生产厂家-安平县诺德金属制品有限公司 | 压力试验机,万能试验机-北京大地华宇仪器设备有限公司 官网 | 希希助培是专业的教育信息化全场景服务商,为教育培训机构提供教务管理、招生营销、财务管理、家校互动等 | 水电站泵站LCU控制屏_发电机保护_变压器保护_逆功率保护_防孤岛保护装置_ 电力微机保护网 | 螺杆式空压机|沈阳螺杆空压机厂家推荐选择沈阳隆瑚机械有限公司 螺带混合机|卧式螺带混合机|双动力混合机-无锡鑫海干燥粉体设备有限公司 | 钻机配件-岩心管-岩心管接箍-地质套管-煤矿用钻头-河南滨远机械设备有限公司 | 石家庄德迈机电设备有限公司| 压力蒸汽灭菌器_脉动真空灭菌器_环氧乙烷灭菌器_等离子灭菌器_广州市科洋 | 随车吊,洒水车,吸污车-程力专用汽车股份有限公司 | 网站建设|营销型网站|独立站搭建|外贸网站建设|wordpress独立站|小程序开发-?无双建站? | 气象站_校园气象站_自动气象站_光伏气象站-山东万象环境科技有限公司 | 湖南视频会议设备厂家|长沙视频会议设备安装型号齐全找湖南日恒智能工程有限公司 | 快达物流:电商和微商的仓储物流外包和托管服务-北京快达国际物流服务有限公司官方网站 | 树枝粉碎机,锯末机,木材粉碎机的专业生产厂家利鑫机械,问价格找利鑫 | 上海建发物资有限公司| 在线腐蚀率仪,在线污垢热阻仪,靶式光源仪-北京同德创业科技有限公司 | 双螺杆挤压膨化设备_挤压熟化设备_烘干设备_油炸设备及喷涂调味设备-山东铭本机械科技公司 | 潍坊卓瑞机械有限公司,输送设备,石灰消化设备,餐厨垃圾设备,化机浆设备,污泥脱水 | 南尔智能科技 南尔 小南管家 智慧中控屏 智能语音面板 - 深圳市南尔智能科技有限公司 | 泊头市鸿海泵业有限公司--导热油泵,高温油泵,沥青保温泵,圆弧泵,齿轮油泵,高粘度泵,自吸离心油泵,罗茨油泵为主的专业生产厂家 | 小麦硬度指数仪-石灰活性测定仪-智能型砂强度仪-北京同德创业科技有限公司 | 螺旋钢管厂家,临沂瑞源工贸有限公司 | 天津鸿宸机械设备有限公司-提取浓缩设备和生物制药设备以及制剂设备、粉碎设备、烘干等设备供应商 | 篮球场围网|网球场围网|球场围网|体育场围网_安平县炎煌丝网制品有限公司 | 思源医疗器械网,雾化器厂家,医用床生产厂家,医疗器械厂家,医疗器械代加工 | 绝缘油介电强度测试仪|d33压电测试仪|准静态d33压电测量仪厂家直销-上海蓝巢电气有限公司【官网】 | 郑州润滑油展-第16届中国润滑油、脂及汽车养护展览会-2025年5月27-28日-郑州国际会展中心 | 温湿度记录仪_温度监控_冷链监控云平台_USB/PDF温度记录仪-深圳市鸿睿物联科技发展有限公司 | 智慧环保大数据云平台_车载走航式扬尘/恶臭/噪声污染源在线监测管控信息系统平台_环保土壤/环境监测系统云平台-奥斯恩智能科技 | 微行科技(MicroX):半导体装备核心供应商-超高真空炉 | 青岛大倾角输送带厂家_橡胶挡边输送带_波纹状挡边输送带_大倾角输送带型号-青岛朗森橡胶有限公司 | 宁波华路德|交通信号灯|交通信号机|太阳能信号灯|交通警示灯|交通信号灯厂家 | 南宁清洁公司|外墙清洗|开荒清洁|洒水车|管道疏通|园林绿化_广西优而美环境工程有限公司 | 耐磨涂料_陶瓷涂料_高温涂料_高硬度耐磨涂料-北京耐默科技 | 摩托车-摩托车配件-摩托车与配件_摩托车与配件行业权威的门户网站! | 转盘萃取塔,DMF回收塔生产厂家-无锡弘鼎华化工设备有限公司 | 云南万通汽车学校【官方网站】| 绿夏技术导航 - 收录精选资源及优质站点网址! | 立式加工中心_龙门加工中心_卧式加工中心-山东威达重工股份有限公司 | 武汉凯美隆窗帘厂家_定做商用窗帘_家用遮阳帘_涵盖电动窗帘_天棚帘_遮阳棚_凯美隆-专注遮阳产品 武汉净化机-武汉全热新风换气机-武汉静音送风机-武汉东信新风节能设备有限公司 |