首页 前端知识 cesium一些常用的方法

cesium一些常用的方法

2024-06-07 12:06:43 前端知识 前端哥 679 356 我要收藏
 
获取当前视角的高度
this.viewer.scene.globe.ellipsoid.cartesianToCartographic(this.camera.position).height;
去掉 entity 的双击事件
viewer.screenSpaceEventHandler.removeInputAction(Cesium.ScreenSpaceEventType.LEFT_DOUBLE_CLICK);
开启抗锯齿


viewer.scene.postProcessStages.fxaa.enabled = true;
/**
 * 获取当前地图的级别
 * @returns {*} 返回当前底图的级别
 */
 getLevel(){
        const level = this.viewer.scene.globe._surface._tilesToRender.length?this.viewer.scene.globe._surface._tilesToRender[0].level:this._getLevel();
        return level;
    }
    _getLevel(height) {
        //this.viewer.camera.positionCartographic获取摄像机的地图位置,经度和纬度以弧度表示,高度以米表示
        height = Cesium.defaultValue(height,this.viewer.camera.positionCartographic.height);
        let A = 40487.57;
        let
转载请注明出处或者链接地址:https://www.qianduange.cn//article/11266.html
标签
评论
发布的文章

1.10 Unity中的数据存储 JSON

2024-06-13 21:06:30

JSON 数据格式化方法

2024-06-13 21:06:26

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!