首页 / 浏览问题 / WebGIS / 问题详情
webGL中矢量点如何贴倾斜模型显示
4EXP 2020年12月10日

使用产品:iserver10i     操作系统:win10 x64

数据类型:文件型

问题详细描述:如题,我从服务器获取的一组二维点数据,需要在三维场景的倾斜摄影模型上进行贴模型展示,设置了贴模型参数,但似乎没有效果,还是贴地显示的,不知道问题出在哪里,请问正确的显示方法是怎样的呢,我的部分源代码如下:

datasource.entities.add({
        id: "childPnt",
        position: Cesium.Cartesian3.fromDegrees(lon, lat),
        point: {
            color: Cesium.Color.WHITE,
            pixelSize: 20,
            outlineColor: Cesium.Color.GOLD,
            outlineWidth: 5,
            disableDepthTestDistance: Number.POSITIVE_INFINITY
        },
        clampToS3M: true, // 贴在S3M模型表面
        properties: ptfeature[0].properties,
    });
viewer.dataSources.add(datasource);

显示效果如图:

1个回答

您好,点对象目前不支持贴倾斜模型,建议将二维点转三维点,设置一定的高度。
1,545EXP 2020年12月11日
...