Cesium-广告牌上方的标签不正确地显示在实体中,它变得更黑

发布于 2025-01-19 19:57:32 字数 916 浏览 1 评论 0原文

我需要广告牌图像上方的标签。标签颜色是白色的,但是变成了深色。 这是代码。 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?

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文