new Label()
A Label draws viewport-aligned text positioned in the 3D scene. This constructor
should not be used directly, instead create labels by calling
LabelCollection#add
.
Throws:
-
DeveloperError : translucencyByDistance.far must be greater than translucencyByDistance.near
-
DeveloperError : pixelOffsetScaleByDistance.far must be greater than pixelOffsetScaleByDistance.near
Demo:
See:
Source:
Scene/Label.js, line 61
Members
-
eyeOffset :Cartesian3
-
Gets and sets the 3D Cartesian offset applied to this label in eye coordinates. Eye coordinates is a left-handed coordinate system, where
x
points towards the viewer's right,y
points up, andz
points into the screen. Eye coordinates use the same scale as world and model coordinates, which is typically meters.
An eye offset is commonly used to arrange multiple label or objects at the same position, e.g., to arrange a label above its corresponding 3D model.
Below, the label is positioned at the center of the Earth but an eye offset makes it always appear on top of the Earth regardless of the viewer's or Earth's orientation.
l.eyeOffset = new Cartesian3(0.0, 8000000.0, 0.0);
Source: Scene/Label.js, line 465 -
fillColor :Color
-
Gets or sets the fill color of this label.
-
font :String
-
Gets or sets the font used to draw this label. Fonts are specified using the same syntax as the CSS 'font' property.
-
horizontalOrigin :HorizontalOrigin
-
Gets or sets the horizontal origin of this label, which determines if the label is drawn to the left, center, or right of its position.
Example:
// Use a top, right origin l.horizontalOrigin = Cesium.HorizontalOrigin.RIGHT; l.verticalOrigin = Cesium.VerticalOrigin.TOP;
Source: Scene/Label.js, line 505 -
id :Object
-
Gets or sets the user-defined object returned when the label is picked.Source: Scene/Label.js, line 613
-
outlineColor :Color
-
Gets or sets the outline color of this label.
-
outlineWidth :Number
-
Gets or sets the outline width of this label.
-
pixelOffset :Cartesian2
-
Gets or sets the pixel offset in screen space from the origin of this label. This is commonly used to align multiple labels and billboards at the same position, e.g., an image and text. The screen space origin is the top, left corner of the canvas;
x
increases from left to right, andy
increases from top to bottom.
The label's origin is indicated by the yellow point.default
l.pixeloffset = new Cartesian2(25, 75);
Source: Scene/Label.js, line 320 -
pixelOffsetScaleByDistance :NearFarScalar
-
Gets or sets near and far pixel offset scaling properties of a Label based on the Label's distance from the camera. A label's pixel offset will be scaled between the
NearFarScalar#nearValue
andNearFarScalar#farValue
while the camera distance falls within the upper and lower bounds of the specifiedNearFarScalar#near
andNearFarScalar#far
. Outside of these ranges the label's pixel offset scaling remains clamped to the nearest bound. If undefined, pixelOffsetScaleByDistance will be disabled.Examples:
// Example 1. // Set a label's pixel offset scale to 0.0 when the // camera is 1500 meters from the label and scale pixel offset to 10.0 pixels // in the y direction the camera distance approaches 8.0e6 meters. text.pixelOffset = new Cesium.Cartesian2(0.0, 1.0); text.pixelOffsetScaleByDistance = new Cesium.NearFarScalar(1.5e2, 0.0, 8.0e6, 10.0);
// Example 2. // disable pixel offset by distance text.pixelOffsetScaleByDistance = undefined;
Source: Scene/Label.js, line 417 -
position :Cartesian3
-
Gets or sets the Cartesian position of this label.Source: Scene/Label.js, line 134
-
scale :Number
-
Gets or sets the uniform scale that is multiplied with the label's size in pixels. A scale of
1.0
does not change the size of the label; a scale greater than1.0
enlarges the label; a positive scale less than1.0
shrinks the label.
Applying a large scale value may pixelate the label. To make text larger without pixelation, use a larger font size when callingLabel#font
instead.
From left to right in the above image, the scales are0.5
,1.0
, and2.0
.Source: Scene/Label.js, line 581 -
show :Boolean
-
Determines if this label will be shown. Use this to hide or show a label, instead of removing it and re-adding it to the collection.Source: Scene/Label.js, line 104
-
style :LabelStyle
-
Gets or sets the style of this label.Source: Scene/Label.js, line 286
-
text :String
-
Gets or sets the text of this label.Source: Scene/Label.js, line 165
-
translucencyByDistance :NearFarScalar
-
Gets or sets near and far translucency properties of a Label based on the Label's distance from the camera. A label's translucency will interpolate between the
NearFarScalar#nearValue
andNearFarScalar#farValue
while the camera distance falls within the upper and lower bounds of the specifiedNearFarScalar#near
andNearFarScalar#far
. Outside of these ranges the label's translucency remains clamped to the nearest bound. If undefined, translucencyByDistance will be disabled.Examples:
// Example 1. // Set a label's translucencyByDistance to 1.0 when the // camera is 1500 meters from the label and disappear as // the camera distance approaches 8.0e6 meters. text.translucencyByDistance = new Cesium.NearFarScalar(1.5e2, 1.0, 8.0e6, 0.0);
// Example 2. // disable translucency by distance text.translucencyByDistance = undefined;
Source: Scene/Label.js, line 368 -
verticalOrigin :VerticalOrigin
-
Gets or sets the vertical origin of this label, which determines if the label is to the above, below, or at the center of its position.
Example:
// Use a top, right origin l.horizontalOrigin = Cesium.HorizontalOrigin.RIGHT; l.verticalOrigin = Cesium.VerticalOrigin.TOP;
Source: Scene/Label.js, line 537
Methods
-
computeScreenSpacePosition(scene) → Cartesian2
-
Computes the screen-space position of the label's origin, taking into account eye and pixel offsets. The screen space origin is the top, left corner of the canvas;
x
increases from left to right, andy
increases from top to bottom.Name Type Description scene
Scene The scene the label is in. Returns:
The screen-space position of the label.Example:
console.log(l.computeScreenSpacePosition(scene).toString());
See:
Source: Scene/Label.js, line 647 -
equals(other) → Boolean
-
Determines if this label equals another label. Labels are equal if all their properties are equal. Labels in different collections can be equal.
Name Type Description other
Label The label to compare for equality. Returns:
true
if the labels are equal; otherwise,false
.Source: Scene/Label.js, line 670 -
isDestroyed() → Boolean
-
Returns true if this object was destroyed; otherwise, false.
If this object was destroyed, it should not be used; calling any function other thanisDestroyed
will result in aDeveloperError
exception.Returns:
True if this object was destroyed; otherwise, false.Source: Scene/Label.js, line 698