国产久_亚欧精品一区_久久亚洲美女_99精品在线观看_日韩成人三级_久久精品久久久久

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對象。或者,可以使用定義顏色樣式的字符串或?qū)ο蟆etter將返回內(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對象。或者,可以使用定義布爾樣式的字符串或?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對象?;蛘撸梢允褂枚x顏色樣式的字符串或?qū)ο蟆etter將返回內(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對象。或者,可以使用定義布爾樣式的字符串或?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對象。或者,可以使用定義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對象。或者,可以使用定義顏色樣式的字符串或?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對象?;蛘?,可以使用定義數(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.

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對象?;蛘撸梢允褂枚xvec2樣式的字符串或?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 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對象?;蛘?,可以使用定義字符串樣式的字符串或?qū)ο蟆etter將返回內(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對象。或者,可以使用定義數(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對象?;蛘?,可以使用定義數(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對象?;蛘?,可以使用定義字符串樣式的字符串或?qū)ο蟆etter將返回內(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對象?;蛘?,可以使用定義顏色樣式的字符串或?qū)ο蟆etter將返回內(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對象?;蛘?,可以使用定義數(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({
    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對象?;蛘?,可以使用定義顏色樣式的字符串或?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對象。或者,可以使用定義數(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 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對象?;蛘撸梢允褂枚x數(shù)字樣式的字符串或?qū)ο?。getter將返回內(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對象?;蛘?,可以使用定義字符串樣式的字符串或?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對象?;蛘?,可以使用定義數(shù)字樣式的字符串或?qū)ο蟆etter將返回內(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á)式的對象,例如,用于在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對象?;蛘?,可以使用定義顏色樣式的字符串或?qū)ο蟆etter將返回內(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對象?;蛘?,可以使用定義數(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 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對象?;蛘?,可以使用定義點(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)使用對象構(gòu)建樣式時(shí),與URL相反,這是true立即。
Default Value: false

(readonly) readyPromise : Promise.<BM3DTileStyle>

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

scaleByDistance : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的scaleByDistance屬性的StyleExpression對象。或者,可以使用定義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對象。或者,可以使用定義顯示樣式的布爾值、字符串或?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定義樣式的對象。
Default Value: {}

translucencyByDistance : StyleExpression

獲取或設(shè)置用于計(jì)算樣式的translucencyByDistance屬性的StyleExpression對象。或者,可以使用定義vec4樣式的字符串或?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對象?;蛘撸梢允褂枚x數(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;
    }
};
国产久_亚欧精品一区_久久亚洲美女_99精品在线观看_日韩成人三级_久久精品久久久久
<code id="kseui"><acronym id="kseui"></acronym></code>
  • <abbr id="kseui"><tbody id="kseui"></tbody></abbr>
  • <button id="kseui"></button>
  • 亚洲欧美日韩另类精品一区二区三区 | 午夜在线精品偷拍| 日韩欧美亚洲日产国| 久久另类ts人妖一区二区| 国产一区二区三区无遮挡| 欧洲精品一区色| 精品麻豆av| 成人免费视频视频在| 亚洲欧美网站| 国产精品一二| 2020国产精品久久精品不卡| 国产一区自拍视频| 午夜欧美一区二区三区免费观看| 黄色国产精品一区二区三区| 99免费在线视频观看| 亚洲欧美日韩综合一区| 国产精品乱子乱xxxx| 亚洲精品男同| 日韩午夜激情| 国产精品久久久久久久久婷婷| 好吊色欧美一区二区三区四区 | 制服国产精品| 一本一道久久a久久精品综合| 日本免费高清一区二区| 欧美一区二区影视| 亚洲ai欧洲av| 亚洲人体一区| 亚洲午夜精品一区二区三区| 亚洲成人在线| 在线亚洲免费| 亚洲承认在线| 亚洲欧洲一二三| 亚洲一区二区在| 媚黑女一区二区| 国产aⅴ精品一区二区三区黄| 91久久大香伊蕉在人线| 国产精品一区二区在线观看| 精品国产一区二区三区日日嗨| 久久久久久久久久久久久9999| 激情小说网站亚洲综合网| 久久久99国产精品免费| 色噜噜狠狠一区二区三区| 一个色的综合| 一本色道久久综合| 成人片在线免费看| 欧美一区二区影视| 狠狠综合久久av一区二区老牛| 一本色道久久综合亚洲二区三区| 国产欧美一区二区色老头 | 裸体一区二区| 国产激情美女久久久久久吹潮| 国产伦一区二区三区色一情| 日本日本精品二区免费| 欧美在线影院| 久久深夜福利| 少妇免费毛片久久久久久久久 | 国产综合色一区二区三区| 婷婷久久青草热一区二区| 欧美午夜不卡影院在线观看完整版免费| 精品电影一区| 91传媒免费看| 免费在线观看一区二区| 午夜国产精品视频| 久久久www| 亚洲欧美日产图| 国产精品入口66mio| 久久伊人资源站| 一区二区三区精品国产| 久久影院理伦片| 亚洲精品护士| 快播亚洲色图| 在线视频精品一区| 日韩精品另类天天更新| 国产精品区免费视频| 美脚丝袜一区二区三区在线观看| 伊人精品成人久久综合软件| 精品国产一区二区三区麻豆免费观看完整版 | 国产精品视频福利| 亚洲精品高清国产一线久久| 亚洲尤物在线| 欧美黄色一级视频| 精品国产一区二区三区四区vr| 亚洲国产精品日韩| 欧美专区一二三| 91亚洲精品丁香在线观看| 狠狠色噜噜狠狠色综合久| 精品午夜一区二区三区| 国产伦精品一区二区三区高清版| 亚洲高清在线播放| 精品无人乱码一区二区三区的优势| 亚洲免费久久| 欧美日韩在线观看一区二区三区| 国外成人免费视频| 2014亚洲精品| 国产精品免费一区二区三区观看| 亚洲一区bb| 亚洲综合av一区| 精品不卡视频| 天堂精品视频| 久久综合毛片| 国产91免费视频| 麻豆成人在线| 一区二区日本视频| 狠狠色狠狠色综合日日tαg| 亚洲国产一区二区在线| 欧美色欧美亚洲另类七区| 国产精品 日韩| 97久久人人超碰caoprom欧美 | 亚洲人人精品| 欧美极品一区| 欧美有码视频| 亚洲一区二区高清视频| 日韩欧美第二区在线观看| 久久艳妇乳肉豪妇荡乳av| 国产精品一区二区你懂得| www国产亚洲精品| 亚洲一区二区精品在线观看| 欧美成人蜜桃| 欧美日韩另类综合| 一区二区三区在线观看www| 日韩精品另类天天更新| 亚洲第一导航| 在线成人性视频| 欧美尤物一区| 在线播放精品| 中文精品视频一区二区在线观看| 夜夜爽av福利精品导航| 亚洲欧美99| 97netav| 国产一区在线免费观看| 久久久久一区二区| 欧洲一区二区日韩在线视频观看免费 | 欧美日韩最好看的视频| 视频在线一区二区三区| 婷婷五月色综合| 欧美日韩免费观看一区| 亚洲美女黄色| 成人18视频| 日韩av高清| 狠狠干综合网| 91成人免费看| 日韩精品资源| 亚洲国产一区二区三区高清| 亚洲专区一区| 欧美国产一二三区| 欧美精品观看| 先锋影音一区二区三区| 国产综合 伊人色| 亚洲欧洲精品在线| 国产精品免费区二区三区观看| av日韩免费电影| 亚洲乱码一区二区三区三上悠亚 | 99re视频在线播放| 亚洲精品乱码| 国产精品v欧美精品v日韩| 日韩一级免费| 精品一区日韩成人| 欧美精品观看| 成人在线观看91| 中文网丁香综合网| 久久精品女人天堂| 亚洲影院在线| 久久久久久久久久久久久久久久av | 一区二区三区四区五区在线| 国产欧美日韩视频一区二区三区| 一区二区日本伦理| 久久精品日韩欧美| 午夜精品视频在线观看一区二区| 中日韩男男gay无套| 狼狼综合久久久久综合网| 影音先锋国产精品| 欧美大陆一区二区| 国产精品久久一区二区三区| 欧美中日韩免费视频| 亚洲欧美日韩国产综合精品二区| 色综合影院在线观看| 久久精品观看| 欧美日韩精品免费看| 久久精品99久久| 亚洲综合99| 中文字幕欧美日韩一区二区三区| 不卡视频一区二区| 亚洲精品在线二区| 先锋影音欧美| 国产精品一区二区三区精品| 亚洲精品少妇| 中文字幕一区二区中文字幕| 国产一区免费观看| 国产精品普通话对白| 欧美日韩国产综合网| 欧美日本韩国一区二区三区| 麻豆91精品| 日韩午夜精品| 韩国av一区| 在线观看欧美一区| 麻豆91蜜桃| 久久精精品视频| 国产传媒一区二区| 久久综合影音| 国产精品视频免费一区|