Cesium-广告牌上方的标签不正确地显示在实体中,它变得更黑
我需要广告牌图像上方的标签。标签颜色是白色的,但是变成了深色。 这是代码。 disableDepthTestDistance
似乎是必要的。
viewer.entities.add({
position: Cesium.Cartesian3.fromDegrees(item.coordinates[0], item.coordinates[1]),
show: true,
label: {
text: 'spring',
fillColor: Cesium.Color.WHITE,
showBackground: false,
style: Cesium.LabelStyle.FILL,
show: true,
scale: 0.4,
disableDepthTestDistance: Number.POSITIVE_INFINITY
},
billboard: {
image: mapLabelBg,
width: 150,
height: 150,
scale: 0.5,
disableDepthTestDistance: Number.POSITIVE_INFINITY,
},
});
您可以看到标签 spring
不是纯白色。天黑了。我不会为标签添加不透明度。 如何使标签 100% 白色?
I need label above billboard image. The label color is white, But it become dark.
Here is code. disableDepthTestDistance
seems necessary.
viewer.entities.add({
position: Cesium.Cartesian3.fromDegrees(item.coordinates[0], item.coordinates[1]),
show: true,
label: {
text: 'spring',
fillColor: Cesium.Color.WHITE,
showBackground: false,
style: Cesium.LabelStyle.FILL,
show: true,
scale: 0.4,
disableDepthTestDistance: Number.POSITIVE_INFINITY
},
billboard: {
image: mapLabelBg,
width: 150,
height: 150,
scale: 0.5,
disableDepthTestDistance: Number.POSITIVE_INFINITY,
},
});
You can see label spring
is not pure white. it's dark. I don't add opacity to label.
How can i make label 100% white?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论