基于earthSDK三维地图组件开发

news2024/12/26 6:44:11

上效果
在这里插入图片描述
功能点

  • 测量分析
  • 相机位置切换
  • geojson数据加载
  • 地图打点,显示信息
  • 点击回传数据
  • 二三位切换

这里二三维切换通上篇openlayers分享,技术交流+V:bloxed

<template>
    <div class="h100 w100">
      <div style="width:100%; height:100%; background-color: pink;" ref="xe2Container"></div>
      <slot name="toolbar"></slot>
      <slot name="mode"></slot>
      <!-- 体积分析弹窗 begin-->
      <div id="panel" v-show="drawType=='volume'">
        <div class="box">
            <label for="">基准面高度</label> 
            <el-input size="small" v-model="AnalyseForm.planeHeight" type="number" />
            <label for="">采样间距</label> 
            <el-input  size="small" v-model="AnalyseForm.planeDistance" type="number" />
            <label for="">挖方体积</label>
            <p id="cutVolume">{{AnalyseForm.cutVolume  }}</p>
            <label for="">填方体积</label>
            <p id="fillVolume">{{ AnalyseForm.fillVolume }}</p>
            <label for="">分析进度</label>
            <p id="progress">{{ AnalyseForm.progress }}</p>
        </div>
        <div class="btn">
            <el-button @click="resetPlane">重新绘制基准面</el-button>
            <el-button @click="startAnalyse">开始分析</el-button>
        </div>
    </div>
       <!-- end -->
  </div>
  </template>
  
  <script setup lang="ts">
  import { onMounted, ref } from "vue";
  import { ESObjectsManager,ESTerrainLayer,ES3DTileset ,ESGeoJson, ESLocationMeasurement, ESDistanceMeasurement, ESHeightMeasurement, ESAreaMeasurement, ESVolumeMeasurement} from 'esobjs-xe2-plugin/dist-node/esobjs-xe2-plugin-main';
  import { CzmGlobeMaterial } from 'xbsj-xe2/dist-node/xe2-cesium-objects';
  import { PickedInfo } from "xbsj-xe2/dist-node/xe2-base-objects";
import { ca } from "element-plus/es/locale";
  
  
  const xe2Container = ref<HTMLElement | null>(null)
  //实例化一个场景对象管理器
  const objm:any = ref<any>(new ESObjectsManager());
  //@ts-ignore
  window.g_objm = objm.value;
  const czmViewer = ref<any>(null)
  const eSTerrainLayer = ref<any>(null);
  const sceneObject = ref<any>(null);
  const sceneStaions = ref<any[]>([]);
  const sceneMeasure = ref<any>(null);
  const drawType = ref<any>("") 
  const emit = defineEmits(["mapSingleClick"]); // 自定义事件 会回传也是point数据

  const measureArr = ref<any[]>([]);
  const AnalyseForm = reactive<any>({
      planeHeight: 0,
      planeDistance: 1,
      cutVolume: "0.00(立方米)",
      fillVolume: "0.00(立方米)",
      progress: "0%"
  })
  onMounted(() => {
    if (!xe2Container.value) return;
    init3Dview();
     
  })
  const init3Dview = () => {
      czmViewer.value = objm.value.createCesiumViewer(xe2Container.value);
    // 监听视口状态
    czmViewer.value.statusChanged.don((status:string) => {
          if (status == 'Created') {
              // 视口创建完成,飞到初始视角位置
              objm.value.activeViewer.flyIn(
                      [110.1465,22.41115, 919.4948053805265],
                      [283.14016420232184, -1.81201260919955, 0.026583596819532502],
                      3
                  );
          }
      })
      // czmViewer.value.changeToWalk([110.105931,22.422299, 200.4948053805265])
      objm.value.createSceneObjectFromJson({
              "id": "9812a65f-0de0-4f7b-b234-809c0c2fb8ef",
              "type": "ESImageryLayer",
              "url": "https://server.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}"
          });
      eSTerrainLayer.value = objm.value.createSceneObject(ESTerrainLayer);
  
      // // cesium官方地形
      eSTerrainLayer.value.url = "ion://1";
      //token需要到cesium官网申请 https://ion.cesium.com/
      objm.value.activeViewer.ionAccessToken =
          "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIwZjlmNzA1MC1iYTk0LTQxYzktYThlYS02ZTc0MDI0ZDgxZTAiLCJpZCI6MjU1MDQ4LCJpYXQiOjE3MzE1MTM0NDB9.XiIX1mau6Mwp-S5AOau-MslPFT2MzRSLuJ4pday8jkc";
      sceneObject.value = objm.value.createSceneObject(CzmGlobeMaterial);
      
      
      objm.value.activeViewer.rain = 0;
      objm.value.activeViewer.cloud = 1;  
  }
  const changeElevation = ()=>{
      sceneObject.value.shadingMode = "none"
  }
  const addStation = (stations: any[]) => {
    if(sceneStaions.value.length){
      sceneStaions.value.forEach((item:any)=>{
        try {
          if (item) objm.value.destroySceneObject(item)
        } catch (error) {
          console.info(error)
        }
      })
    }
      stations.forEach((point, index) => {
        let sceneStaion = objm.value.createSceneObject(ESGeoJson,index+point.stcd);
            let data = {
              "type": "FeatureCollection",
              "name":"stations",
              "crs": {
                  "type": "name",
                  "properties": {
                      "name": "urn:ogc:def:crs:OGC:1.3:CRS84"
                  }
              },
              "features": [
                {
                type: "Feature",
                geometry: {
                    type: "Point",
                    coordinates: [point.lng, point.lat],
                    iconUrl: point.icon,
                },
                iconUrl: point.icon,
                properties: {
                    id: index + point.stcd,
                    name: point.stnm,
                    type: point.sttp,
                    info: point,
                    iconUrl: point.icon,
                },
                id:index + point.stcd,
            }]
          }
        sceneStaion.url = data
      // 额外存储属性
      sceneStaion.extras = data
      // 图片是否显示
      sceneStaion.imageShow = true
      // 图片url地址
      sceneStaion.imageUrl = point.icon
      // 图片大小
      sceneStaion.imageSize = [60, 60]
      // 图片锚点
      sceneStaion.imageAnchor = [0.5, 1]
      // 图片偏移
      sceneStaion.imageOffset = [0, 0]
      // 文字颜色
      sceneStaion.textColor = [1, 1, 1, 1]
      // 文字大小
      sceneStaion.textFontSize = 12
      // 文字背景颜色
    //   sceneStaion.textBackgroundColor = [1, 1, 1, 1]
      // 文字锚点
      sceneStaion.textAnchor = [0.5, 1]
      // 用于显示的属性
      sceneStaion.textProperty = "name"
      // 文字的偏移值
      sceneStaion.textOffset = [-10, -60]
      // 是否被拾取
      sceneStaion.allowPicking = true
      // 贴地模式
      sceneStaion.heightReference = "CLAMP_TO_GROUND"
      // 被拾取
      sceneStaion.pickedEvent.don((e:any) => {
          const point = e.childPickedInfo.geojsonPickInfo.properties;
          const attachedInfo = PickedInfo.getFinalAttachedInfo(e)
          switch (attachedInfo.viewersPickingPointerEventFuncType[0]) {
              case 'click':
              mapSingleClick(point.info);
                  break;
              case "pointerHover":
                  // alert("悬浮拾取:" + name)
                  break;
              default:
                  break;
          }
      })
      sceneStaions.value.push(sceneStaion)
    });
  }
  const mapSingleClick = (point: any) => {
  emit("mapSingleClick", point);
};
  const clear = ()=>{
    drawType.value = ""
    measureArr.value.forEach((item:any) => {
          if (item) objm.value.destroySceneObject(item)
      })
    measureArr.value.length = 0
    sceneMeasure.value.editing = false;
    sceneMeasure.value?.clear();
    
  }
  const zoomInOut = (number: any) => {
    const  cameraPosition=  objm.value.activeViewer.getCurrentCameraInfo();
    const position = cameraPosition.position;
    const rotation = cameraPosition.rotation;
    const newposition = [position[0], position[1], position[2]+(number*1000) ];
    const newrotation = [rotation[0], rotation[1], rotation[2] ];
    console.log(newposition)
    objm.value.activeViewer.flyIn(
        [...newposition],
        [...newrotation],
        1
    );
    
  }
  const toCenter = (coordinates?: any[]) => {
    const newCoordinates =coordinates ?  [...coordinates, 789.4948053805265] : [110.1465,22.41115, 919.4948053805265]
    objm.value.activeViewer.flyIn(
      newCoordinates,
        [29.015034176609266, -29.191968119807054, 359.9990548222274],
        3
    );
  }
  const draw = (measureType: any) => {
    drawType.value = measureType;
    switch (measureType) {
      case "point":
        createPoint();
        break;
      case "line":
        createDistance();
        break;
      default:
      case "height":
        createHeight();  
        break;
      case "area":
        createArea();  
        break;
      case "volume":
        createVolume();  
        break;    
    }
  }
  const createPoint = ()=>{
    sceneMeasure.value = objm.value.createSceneObject(ESLocationMeasurement);
    sceneMeasure.value.editing = true;
    measureArr.value.push(sceneMeasure.value);
  }
  const createDistance = ()=>{
    sceneMeasure.value = objm.value.createSceneObject(ESDistanceMeasurement);
    sceneMeasure.value.editing = true;
    measureArr.value.push(sceneMeasure.value);
  }
 const createHeight = ()=>{
  sceneMeasure.value = objm.value.createSceneObject(ESHeightMeasurement);
  sceneMeasure.value.editing = true;
  measureArr.value.push(sceneMeasure.value);
  }
  const createArea = () => {
    sceneMeasure.value = objm.value.createSceneObject(ESAreaMeasurement);
    sceneMeasure.value.editing = true;
    measureArr.value.push(sceneMeasure.value);
  }
  const createVolume = ()=>{
    sceneMeasure.value = objm.value.createSceneObject(ESVolumeMeasurement);
    sceneMeasure.value.editing = true;
    sceneMeasure.value.depthTest=true;
    sceneMeasure.value.points = [];
    sceneMeasure.value.editing = true;
    jionDon();
    measureArr.value.push(sceneMeasure.value);
  }
  const resetPlane = ()=>{
    sceneMeasure.value.clear();
    sceneMeasure.value.editing = false;
    sceneMeasure.value.points = [];
    sceneMeasure.value.editing = true;
  }
  const startAnalyse = () => {
    sceneMeasure.value.clear();
    sceneMeasure.value.planeDistance = AnalyseForm.planeDistance;
    sceneMeasure.value.planeHeight = AnalyseForm.planeHeight;
    sceneMeasure.value.start();
  }
  const  jionDon = ()=>{
    // 监听基准面设置到UI上
    sceneMeasure.value.planeHeightChanged.don((val:any) => {
        if (val) AnalyseForm.planeHeight= Number(val).toFixed(2)
    })

    // 监听挖方体积
    sceneMeasure.value.cutVolumeChanged.don((val:any) => {
      AnalyseForm.cutVolume = val.toFixed(2) + '(立方米)'
    })

    // 监听填方体积
    sceneMeasure.value.fillVolumeChanged.don((val:any) => {
      AnalyseForm.fillVolume= val.toFixed(2) + '(立方米)'
    })

    // 监听进度
    sceneMeasure.value.progressChanged.don((val:any) => {
      AnalyseForm.progress = val.toFixed(2) + "%"
    })
  }
  defineExpose({
      czmViewer, //地图
    /**
      @desc 添加站点 
      @param [{
        stcd:0000,
        stnm:"xxxx",
        sttp:'',
        icon:'xxxx',
        lng:number,
        lat:number
      }
        data:[{name:'xx',value:'',unit:''}]  //data地图鼠标悬浮展示内容
      }]
    */
    addStation,  
    /**
     * 缩放 地图
     * @param {number} zoom 缩放级别
     */
    zoomInOut, 
    /**
     * 地图中心点
     * @param {number} center 地图中心点参数格式 [lng,lat]
     * @param {number} zoom 缩放级别 15
     */ 
    toCenter,  
    /**
     * 清除地图分析
     */
    clear,
    /**
     * 地图分析
     * @param {string} type 分析类型  'area' 面积  'line' 距离
     */
    draw,  
    
  });
  </script>
<style scoped>
 #panel{
    position: absolute;
    box-sizing: border-box;
    right: 460px;
    top: 20px;
    width: 330px;
    background: #3e4249;
    border-radius: 8px;
    padding: 20px;
    color: #d6deea;
    border: 1px solid #939e8f;
    animation-name: enter;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-delay: 0.7s;
}
.box {
      display: grid;
      grid-template-columns: 90px 1fr;
      align-items: center;
  }

  .box label {
      padding-right: 10px;
  }

  .btn {
      padding-top: 10px;
      text-align: center;

  }

  .btn button {
  }

  label {
      line-height: 30px;
  }
</style>
  

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/2265686.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

基于JavaWeb的流动摊位管理系统

一、系统背景与意义 随着城市化进程的加速和市场经济的发展&#xff0c;流动摊位已经成为城市商业活动中不可或缺的一部分。然而&#xff0c;传统的流动摊位管理方式存在诸多弊端&#xff0c;如信息不透明、管理效率低下、租赁不公等。因此&#xff0c;开发一种高效、便捷、智…

自动驾驶3D目标检测综述(六)

停更了好久终于回来了&#xff08;其实是因为博主去备考期末了hh&#xff09; 这一篇接着&#xff08;五&#xff09;的第七章开始讲述第八章的内容。第八章主要介绍的是三维目标检测的高效标签。 目录 第八章 三维目标检测高效标签 一、域适应 &#xff08;一&#xff09;…

100V宽压输入反激隔离电源,适用于N道沟MOSFET或GaN或5V栅极驱动器,无需光耦合

说明: PC4411是一个隔离的反激式控制器在宽输入电压下具有高效率范围为2.7V至100V。它直接测量初级侧反激输出电压波形&#xff0c;不需要光耦合器或第三方用于调节的绕组。设置输出只需要一个电阻器电压。PC4411提供5V栅极驱动驱动外部N沟道MOSFET的电压或GaN。内部补偿和软启…

1.系统学习-线性回归

系统学习-线性回归 前言线性回归介绍误差函数梯度下降梯度下降示例 回归问题常见的评价函数1. MAE, mean absolutely error2. MSE, mean squared error3. R square &#xff08;决定系数或R方&#xff09; 机器学习建模流程模型正则化拓展阅读作业 链接: 2.系统学习-逻辑回归 …

windows使用zip包安装MySQL

windows通过zip包安装MySQL windows通过zip包安装MySQL下载MySQL的zip安装包创建安装目录和数据目录解压zip安装包创建配置目录 etc 和 配置文件 my.ini安装MySQL进入解压后的bin目录执行命令初始化执行命令安装 验证安装查看服务已安装 启动MySQL查看服务运行情况修改密码创建…

【Postgresql】数据库忘记密码时,重置密码 + 局域网下对外开放访问设置

【Postgresql】数据库忘记密码时,重置密码 + 局域网下对外开放访问设置 问题场景数据库忘记密码时,重置密码局域网下对外开放访问设置问题场景 Postgresql可支持复杂查询,支持较多的数据类型,在生产中较为使用。但有时在局域网下,想通过外部连接使用数据库,可能会出现数…

大模型-使用Ollama+Dify在本地搭建一个专属于自己的聊天助手与知识库

大模型-使用OllamaDify在本地搭建一个专属于自己的知识库 1、本地安装Dify2、本地安装Ollama并解决跨越问题3、使用Dify搭建聊天助手4、使用Dify搭建本地知识库 1、本地安装Dify 参考往期博客&#xff1a;https://guoqingru.blog.csdn.net/article/details/144683767 2、本地…

UE5 崩溃问题汇总!!!

Using bundled DotNet SDK version: 6.0.302 ERROR: UnrealBuildTool.dll not found in "..\..\Engine\Binaries\DotNET\UnrealBuildTool\UnrealBuildTool.dll" 在你遇到这种极奇崩溃的BUG &#xff0c;难以解决的时候。 尝试了N种方法&#xff0c;都不行的解决方法。…

数字IC前端学习笔记:脉动阵列的设计方法学(四)

相关阅读 数字IC前端https://blog.csdn.net/weixin_45791458/category_12173698.html?spm1001.2014.3001.5482 引言 脉动结构&#xff08;也称为脉动阵列&#xff09;表示一种有节奏地计算并通过系统传输数据的处理单元(PEs)网络。这些处理单元有规律地泵入泵出数据以保持规则…

软件工程-【软件项目管理】--期末复习题汇总

一、单项选择题 &#xff08;1&#xff09;赶工一个任务时&#xff0c;你应该关注&#xff08; C &#xff09; A. 尽可能多的任务 B. 非关键任务 C. 加速执行关键路径上的任务 D. 通过成本最低化加速执行任务 &#xff08;2&#xff09;下列哪个不是项目管理计划的一部分&…

【Git学习】windows系统下git init后没有看到生成的.git文件夹

[问题] git init 命令后看不到.git文件夹 [原因] 文件夹设置隐藏 [解决办法] Win11 win10

《Posterior Collapse and Latent Variable Non-identifiability》

看起来像一篇很有用的paper&#xff0c;而且还是23年的 没看完 后边看不懂了 Abstract 现有的解释通常将后验崩塌归因于由于变分近似而使用神经网络或优化问题。 而本文认为后验崩塌是潜在变量不可识别性的问题(a problem of latent variable non-identifiability) 本文证明了…

申请腾讯混元的API Key并且使用LobeChat调用混元AI

申请腾讯混元的API Key并且使用LobeChat调用混元AI 之前星哥写了一篇文章《手把手教拥有你自己的大模型ChatGPT和Gemini等应用-开源lobe-chat》搭建的开源项目&#xff0c;今天这篇文章教大家如何添加腾讯云的混元模型&#xff0c;并且使用LobeChat调用腾讯混元AI。 申请腾讯混…

Navicat通过ssh连接mysql

navicat 通过ssh连接mysql 对搭建完的mysql连接时&#xff0c;通过ssh连接的方法 需要确保mysql默认端口3306没有被防火墙阻拦 第一步 第二步 35027448270)] 需要注意的是乌班图系列的默认root的ssh是禁止的&#xff0c;应该用别的账户登录

【NACOS插件】使用官网插件更换NACOS数据库

说明 nacos 2.3.1默认支持mysql和derby数据库&#xff0c;如果想要支持其他数据库&#xff0c;可以通过使用插件方式实现。对于该插件的使用&#xff0c;官方说明文档较为粗略(不过也没问题&#xff0c;实际上整个过程就是很简单&#xff0c;只是使用者想复杂了)&#xff0c;网…

mysql基础(jdbc)

1.Java连接数据库步骤 1.注册驱动 Class<?> driverManagerClass.forName("com.mysql.cj.jdbc.Driver"); 2.获取连接 Connection conDriverManager.getConnection("jdbc:mysql://localhost:3306/studymysql","root","123456"); …

ROM修改进阶教程------修改刷机包init.rc 自启用户自定义脚本的一些基本操作 代码格式与注意事项

在很多定制化固件中。我们需要修改系统的rc文件来启动自己的一些脚本。但有时候修改会不起作用,其具体原因在于权限与代码格式的问题。博文将系统的解析代码操作编写的注意事项与各种权限分别。了解以上. 轻松编写自定义启动脚本. 通过博文了解💝💝💝 1-------💝💝…

硬件模块常使用的外部中断

对于STM32来说&#xff0c;想要获取的信号是外部驱动的很快的突发信号 例1&#xff1a;旋转编码器的输出信号&#xff1a; 可能很久都不会拧它&#xff0c;不需要STM32做任何事情但是一拧它&#xff0c;就会有很多脉冲波形需要STM32接收信号是突发的&#xff0c;STM32不知道什…

3D布展平台主要有哪些功能?有什么特点?

3D布展平台是一种利用3D技术和虚拟现实&#xff08;VR&#xff09;技术&#xff0c;为用户提供线上虚拟展览和展示服务的平台。这些平台通常允许用户创建、设计和发布3D虚拟展厅&#xff0c;从而提供沉浸式的展览体验。以下是对3D布展平台的详细介绍&#xff1a; 一、主要功能 …

大恒相机开发(2)—Python软触发调用采集图像

大恒相机开发&#xff08;2&#xff09;—Python软触发调用采集图像 完整代码详细解读和功能说明扩展学习 这段代码是一个Python程序&#xff0c;用于从大恒相机采集图像&#xff0c;通过软件触发来采集图像。 完整代码 咱们直接上python的完整代码&#xff1a; # version:…