labelHorizontalOrigin
Gets or sets the StyleExpression object used to evaluate the style's labelHorizontalOrigin
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.
The expression must return a HorizontalOrigin
.
This expression is only applicable to point features in a Vector tile.
const style = new Cesium3DTileStyle({
labelHorizontalOrigin : HorizontalOrigin.LEFT
});
style.labelHorizontalOrigin.evaluate(feature); // returns a HorizontalOrigin
Content copied to clipboard
const style = new Cesium3DTileStyle();
// Override labelHorizontalOrigin expression with a custom function
style.labelHorizontalOrigin = {
evaluate : function(feature) {
return HorizontalOrigin.CENTER;
}
};
Content copied to clipboard