vue+cesium项目demo

使用turf时在index.html中引用

<!-- 使用unpkg -->
<script src="https://unpkg.com/@turf/turf/turf.min.js"></script>

 

<template><div class="cesium_box" id="cesiumContatiner"></div><button class="bthdel_point" @click="toDelpoint">删除</button>
</template>
<script setup>
import { ErrorCodes, onMounted } from "vue";import * as Cesium from "cesium";
let viewer, pointDel, dataturf;
function toDelpoint() {console.log(viewer.entities);// 直接删除// viewer.entities.remove(pointDel)// 删除所有//  viewer.entities.removeAll()// 删除指定// viewer.entities.removeById('rectangleimg')// 先拿到实体再删除// const entityPoint = viewer.entities.getById("rectangleimg");// viewer.entities.remove(entityPoint);viewer.dataSources.remove(dataturf);
}onMounted(() => {// 设置cesium tokenCesium.Ion.defaultAccessToken ="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJhYzY2NGQ0My1hMjQxLTQxZDgtYjQwYy1mZjQ1YjVmYzljZDUiLCJpZCI6MjEzNDUyLCJpYXQiOjE3MTUwNzI2MTR9.ID13prfqYbHG4-WqCl9RF9cymnB3wXi4ckGO1BZvF4Y";// // 创建自定义图层//  const esri=new Cesium.ArcGisMapServerImageryProvider({//   url: "https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer",//   enablePickFeatures: false,//  })//   // 初始化cesium// // viewer是所有api的开始// const viewer = new Cesium.Viewer("cesiumContatiner",{//   imageryProvider:esri, //自定义图层,默认是谷歌的影响图层//   // 地形图层//   terrainProvider:Cesium.createWorldTerrain({//     // requestWaterMask:true //水面特效//   })// });// 【控件】viewer = new Cesium.Viewer("cesiumContatiner", {timeline: false, // 时间轴animation: false, // 动画小组件geocoder: false, // 地理编码(搜索)组件homeButton: false, // 首页,点击之后将视图跳转到默认视角sceneModePicker: false, // 投影方式,切换2D、3D 和 Columbus View (CV) 模式。baseLayerPicker: false, // 底图组件,选择三维数字地球的底图(imagery and terrain)。navigationHelpButton: false, // 帮助按钮fullscreenButton: false, // 全屏按钮// vrButton: false, // VR模式selectionIndicator: false, //是否显示选取指示器组件// shouldAnimate: true, // 自动播放动画控件// shadows: true, // 是否显示光照投射的阴影// terrainShadows: Cesium.ShadowMode.RECEIVE_ONLY, // 地质接收阴影`infoBox: true, // 信息框});// 隐藏logoviewer._cesiumWidget._creditContainer.style.display = "none";// promitive entity// entity 基于promitive封装的// 完美封装,调用方便// promitive// 更接近webgl底层// 可以绘制更高级的图形const tileset = viewer.scene.primitives.add(new Cesium.Cesium3DTileset({url: Cesium.IonResource.fromAssetId(69380),}));viewer.flyTo(tileset);// 线var linestring1 = turf.lineString([[-24, 63],[-23, 60],[-25, 65],[-20, 69],]);// Cesium.GeoJsonDataSource.load(linestring1).then(function (dataSource) {//   viewer.dataSources.add(dataSource);//   var entities = dataSource.entities.values;//   for (var i = 0; i < entities.length; i++) {//     var entity = entities[i];//     entity.polyline.width = 2;//     entity.polyline.material = Cesium.Color.RED;//   }//   viewer.zoomTo(dataSource);// });Cesium.GeoJsonDataSource.load(linestring1).then((res) => {console.log(res);const entity = res.entities.values[0];entity.polyline.material = Cesium.Color.RED;entity.polyline.width = 2;viewer.entities.add(entity);// viewer.zoomTo(entity)});// 多条线var multiLine = turf.multiLineString([[[0, 0],[5, 5],],[[6, 6],[10, 10],],]);Cesium.GeoJsonDataSource.load(multiLine).then((res) => {viewer.dataSources.add(res);dataturf = res;//  viewer.zoomTo(res)});// 注意:polygon首尾坐标要一致var polygonturf = turf.polygon([[[-5, 52],[-4, 56],[-2, 51],[-5, 52],],]);const polygonline = Cesium.GeoJsonDataSource.load(polygonturf);viewer.dataSources.add(polygonline);// viewer.zoomTo(polygonline);// 多个多边形var multiPoly = turf.multiPolygon([[[[0, 0],[0, 10],[10, 10],[10, 0],[0, 0],],],[[[12, 12],[12, 23],[23, 23],[23, 12],[12, 12],],],]);let multiPolyTurf = Cesium.GeoJsonDataSource.load(multiPoly);viewer.dataSources.add(multiPolyTurf);// viewer.zoomTo(multiPolyTurf);// let poram = Cesium.GeoJsonDataSource.load(//   "../public/ne_10m_us_states.topojson"// );// viewer.dataSources.add(poram);// viewer.zoomTo(poram)// 【kmz】// let promise = Cesium.KmlDataSource.load("../public/gdpPerCapita2008.kmz");// viewer.dataSources.add(promise);// viewer.zoomTo(promise)// 【坐标转换】//经纬度转笛卡尔坐标// 返回的是一个笛卡尔坐标(z!=高度)// const cartesian = Cesium.Cartesian3.fromDegrees(110, 20, 20); //经度、纬度、高度// const cartesian2 = Cesium.Cartesian3.fromDegrees(110, 20, 30); //经度、纬度、高度// // console.log(cartesian,cartesian2)// // 1、笛卡尔坐标转经纬度坐标// let cartographic = Cesium.Cartographic.fromCartesian(cartesian)// //2、弧度坐标转角度坐标1// // let lon=180 / Math.PI*cartographic.longitude// // let lat=180 / Math.PI*cartographic.latitude// //2、弧度坐标转角度坐标2(cesium自带的方法)// let lon =Cesium.Math.toDegrees(cartographic.longitude)// let lat =Cesium.Math.toDegrees(cartographic.latitude)// let height=cartographic.height// console.log(lon,lat,height)//  【相机】// const postition=Cesium.Cartesian3.fromDegrees(116.397128,39.916527,20000)// // setView通过定义相机目的地(方向),直接跳转到目的地// viewer.camera.setView({//   destination:postition,//   // 默认(0,-90,0)//   orientation: {//     heading: Cesium.Math.toRadians(0), // 方向 y 左右摇头//     pitch: Cesium.Math.toRadians(-90), // 倾斜角度 x  上下点头  -90看地面  0看前方  90看天上//     roll: 0, //z 歪头看//   },// })// 【相机】【飞行】flyTo 将相机从当前位置移动到新的位置// flyTo快速切换视角,带飞行动画,可以设置飞行的时长// const postition=Cesium.Cartesian3.fromDegrees(110,20,20000)// viewer.camera.flyTo({//   destination: postition,//   duration:3, //单位秒//   orientation: {//     heading: Cesium.Math.toRadians(0), // 方向 y 左右摇头//     pitch: Cesium.Math.toRadians(-90), // 倾斜角度 x  上下点头  -90看地面  0看前方  90看天上//     roll: 0, //z 歪头看//   },// });// 【相机】// lookAt将视角固定在设置的点位上,可以选择视角,但不能改变位置// const position2=Cesium.Cartesian3.fromDegrees(110,20)// viewer.camera.lookAt(position2,new Cesium.HeadingPitchRange(//   Cesium.Math.toRadians(0),//   Cesium.Math.toRadians(-90),//   20000//  )// )// 实体 entity// 写法一// const point=new Cesium.Entity({//   position:Cesium.Cartesian3.fromDegrees(120,30),//   point:{//     pixelSize:20, //像素大小//     color:Cesium.Color.RED,//     // outlineColor:Cesium.Color.WHITE,//     // outlineWidth:2,//     // heightReference:Cesium.HeightReference.CLAMP_TO_GROUND//   }// })// viewer.entities.add(point)// // console.log(viewer.entities)// viewer.zoomTo(point)// 方法二(推荐)const point2 = viewer.entities.add({id: "point",position: Cesium.Cartesian3.fromDegrees(120, 30),point: {pixelSize: 20, //像素大小color: Cesium.Color.RED,outlineColor: Cesium.Color.WHITE,outlineWidth: 20,heightReference: Cesium.HeightReference.CLAMP_TO_GROUND,},});// viewer.zoomTo(point2)// 与该实体相关联的广告牌。const billboard = viewer.entities.add({id: "billboard",position: Cesium.Cartesian3.fromDegrees(116, 40, 10),billboard: {image: "../public/dw.png",scale: 0.3,color: Cesium.Color.RED,// width:20,// height:20},});// 【label】const label = viewer.entities.add({id: "label",position: Cesium.Cartesian3.fromDegrees(112, 30, 4000),label: {text: "cesium",font: "20px sans-serif",fillColor: Cesium.Color.WHITE,showBackground: true,backgroundColor: Cesium.Color.BLACK.withAlpha(0.5),backgroundPadding: new Cesium.Cartesian2(10, 10),outlineColor: Cesium.Color.RED,outlineWidth: 2,style: Cesium.LabelStyle.FILL_AND_OUTLINE,horizontalOrigin: Cesium.HorizontalOrigin.RIGHT,verticalOrigin: Cesium.VerticalOrigin.TOP,//  scaleByDistance: new Cesium.NearFarScalar(1.0e2, 1, 1.0e3, 0.2),//随着距离改变标注尺寸//  pixelOffsetScaleByDistance: new Cesium.NearFarScalar(1.0e2, 1.0, 1.0e3, 0.2), //随着距离改变偏移量//  translucencyByDistance:new Cesium.NearFarScalar(1.5e2,1,8.0e6,0.0),//  pixelOffset:new Cesium.Cartesian2(0,1)},});// viewer.zoomTo(label);// //线const polyline = viewer.entities.add({polyline: {positions: Cesium.Cartesian3.fromDegreesArray([118, 29, 119, 29, 118, 31,]), //返回笛卡尔坐标数组width: 10,material: Cesium.Color.RED,},});// viewer.zoomTo(polyline)// 多边形const polygon = viewer.entities.add({id: "polygon",polygon: {// 左下角、右下角、右上、左上hierarchy: Cesium.Cartesian3.fromDegreesArray([121, 30, 123, 30, 122, 31, 120, 31,]),material: Cesium.Color.RED.withAlpha(0.5),height: 200000,extrudedHeight: 10000,heightReference: Cesium.HeightReference.CLAMP_TO_GROUND,outline: true, //是否展示外线outlineColor: Cesium.Color.WHITE,outlineWidth: 2,fill: true, //是否填充},// polygon: {//   hierarchy: {//     positions: Cesium.Cartesian3.fromDegreesArray([//       121, 30, 123, 30, 122, 31, 120, 31,//     ]),//   },//   material: Cesium.Color.RED.withAlpha(0.5),// },});// viewer.zoomTo(polygon);// boxconst box = viewer.entities.add({position: Cesium.Cartesian3.fromDegrees(120, 30, 10000),box: {dimensions: new Cesium.Cartesian3(40000, 40000, 40000),material: Cesium.Color.CYAN.withAlpha(0.5),outline: true,outlineColor: Cesium.Color.WHITE,outlineWidth: 2,},});// viewer.zoomTo(box)// 椭圆const ellipse = viewer.entities.add({position: Cesium.Cartesian3.fromDegrees(110, 30),ellipse: {semiMinorAxis: 3000, //半短轴semiMajorAxis: 5000, //半长轴// material:Cesium.Color.DARKBLUE.withAlpha(0.5),material: "../public/img.jpeg",outline: true,outlineColor: Cesium.Color.RED,outlineWidth: 20,rotation: Math.PI / 2, //选择角度extrudedHeight: 4000,fill: true,},});// viewer.zoomTo(ellipse)// 矩形const rectangle = viewer.entities.add({id: "rectangleimg",rectangle: {coordinates: Cesium.Rectangle.fromDegrees(116, 30, 117, 31),material: "../public/girl.jpg",outline: true,outlineColor: Cesium.Color.WHITE,outlineWidth: 2,height: 100000,extrudedHeight: 100000, //获取或设置数字属性,该属性指定矩形拉伸的高度。设置此属性将创建从高处开始并在此高度处结束的体积。heightReference: Cesium.HeightReference.CLAMP_TO_GROUND, //获取或设置指定拉伸的 HeightReference 的属性。fill: true,},});// viewer.zoomTo(rectangle)// 组合// const billboardZH = viewer.entities.add({//   position: Cesium.Cartesian3.fromDegrees(116.17860748743055, 39.908307123610385, 100),//   billboard: {//     image: "../public/dw.png",//     scale: 0.3,//     color: Cesium.Color.YELLOW,//   },// });// const lineZH = viewer.entities.add({//   polyline: {//     positions: Cesium.Cartesian3.fromDegreesArrayHeights([ 116.17860748743055, 39.908307123610385,0,116.17860748743055,39.908307123610385,100]),//     // width: 5,//     material: Cesium.Color.RED,//   },// });// const labelZH=viewer.entities.add({//   position: Cesium.Cartesian3.fromDegrees(116.17860748743055, 39.908307123610385, 100),//   label: {//     text: "中海商务",//     font: "24px sans-serif",//     fillColor: Cesium.Color.RED,//     outlineColor: Cesium.Color.WHITE,//     outlineWidth: 2,//     style: Cesium.LabelStyle.FILL_AND_OUTLINE,//     pixelOffset://       new Cesium.Cartesian2(0, -50), //偏移量//     // eyeOffset: new Cesium.Cartesian3(0, 0, 1000), //眼睛的偏移量//    },//  })// viewer.zoomTo(billboardZH);// 组合实体const entity = viewer.entities.add({position: Cesium.Cartesian3.fromDegrees(116.17860748743055,39.908307123610385,100),billboard: {image: "../public/dw.png",scale: 0.3,color: Cesium.Color.YELLOW,},polyline: {positions: Cesium.Cartesian3.fromDegreesArrayHeights([116.17860748743055, 39.908307123610385, 0, 116.17860748743055,39.908307123610385, 100,]),// width: 5,material: Cesium.Color.RED,},label: {text: "中海商务",font: "24px sans-serif",fillColor: Cesium.Color.RED,outlineColor: Cesium.Color.WHITE,outlineWidth: 2,style: Cesium.LabelStyle.FILL_AND_OUTLINE,pixelOffset: new Cesium.Cartesian2(0, -50), //偏移量// eyeOffset: new Cesium.Cartesian3(0, 0, 1000), //眼睛的偏移量},});// viewer.zoomTo(entity);pointDel = viewer.entities.add({id: "pointDel",position: Cesium.Cartesian3.fromDegrees(116.17860748743055, 39.908),point: {pixelSize: 50,color: Cesium.Color.MEDIUMPURPLE,outlineColor: Cesium.Color.LIME,outlineWidth: 20,heightReference: Cesium.HeightReference.CLAMP_TO_GROUND,},});// viewer.zoomTo(pointDel);let lon,lat,num = 0;const lineYD = viewer.entities.add({polyline: {positions: new Cesium.CallbackProperty(() => {console.log(1);num += 0.005;lon = 116 + num;lat = 35 + num;if (lon < 117) {return Cesium.Cartesian3.fromDegreesArray([116, 35, lon, lat]);} else {// 给positions赋值一个新的对象,不再需要CallbackProprty 提供lineYD.polyline.positions = Cesium.Cartesian3.fromDegreesArray([116,35,lon,lat,]);}}, false), //传false,不传动不起来width: 5,material: Cesium.Color.RED,// clampToGround:true},});// viewer.zoomTo(lineYD);
});
</script><style scoped lang='scss'>
#cesiumContatiner {width: 100vw;height: 100vh;overflow: hidden;// :deep .cesium-viewer-bottom {//   display: none;// }
}
.cesium_box {position: relative;
}
.bthdel_point {position: absolute;top: 0;left: 0;width: 100px;text-align: center;padding: 10px;background: rgba(0, 0, 0, 0.5);color: #fff;border-radius: 5px;cursor: pointer;
}
</style>

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

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

相关文章

【保姆级教程】VMware Workstation Pro的虚拟机导入vritualbox详细教程

解决方案 1、OVF格式2、VMX格式 1、OVF格式 选定需要导出的虚拟机&#xff08;关闭或者挂起状态下&#xff09;依次选择文件-导出为ovf 在Vritualbox导入刚刚导出的.ovf文件 更改路径&#xff0c;按实际需要修改 成功导入 2、VMX格式 如果在VMware Workstation Pro导出的…

Vue实战技巧 —— 企业开发实战中的常见疑难问题

Vue企业开发实战中的常见疑难问题 1. 解决Vue动态路由参数变化&#xff0c;页面数据不更新2. vue组件里定时器销毁问题3. vue实现按需加载组件的两种方式4. 组件之间&#xff0c;父子组件之间的通信方案5. Vue中获取当前父元素&#xff0c;子元素&#xff0c;兄弟元素6. 开发环…

安卓手机APP开发__支持不同的语言和文化

安卓手机APP开发__支持不同的语言和文化 目录 概述 创建本地的目录和资源文件 在你的app中使用资源 结构化消息中的文本 概述 APP包括了能被指定为一种特定的文件的资源。例如&#xff0c;一个APP能够包括 特定的文件的字符串&#xff0c;这个字符串能被翻译为本地的语言…

pg数据库的热备

Pg数据库主从复制 ​ 前言&#xff1a;公司的一台服务器因为断电导致系统损坏&#xff0c;经过3天的抢修&#xff0c;将服务器和数据恢复。为了避免数据的丢失&#xff0c;先将数据备份&#xff0c;并进行高可用。 ​ 采用技术&#xff1a;keepalivedpg ​ 后期并实现zabbix…

传说中的运维门户设计

在IT服务管理这片广阔天地中&#xff0c;运维门户如同一位技艺高超的魔术师&#xff0c;轻轻一挥手&#xff0c;便将纷繁复杂的运维世界化繁为简&#xff0c;编织成一张便捷高效、触手可及的网络。它不仅是ITSM系统中不可或缺的一环&#xff0c;更是连接用户与技术世界的桥梁&a…

Spring WebFlux:响应式编程

在软件开发领域&#xff0c;随着互联网应用的规模和复杂性不断增加&#xff0c;传统的编程模型逐渐暴露出一些局限性&#xff0c;尤其是在面对高并发、大规模数据流处理等场景时。为了应对这些挑战&#xff0c;响应式编程&#xff08;Reactive Programming&#xff09;应运而生…

Java字符串去除空格的方法

前言 在Java编程实践中&#xff0c;处理字符串中的空格是一项基本且频繁的操作。本文将深入探讨如何使用Java原生方法以及Apache Commons Lang库中的StringUtils类&#xff0c;全方位解决字符串去空格的需求&#xff0c;让你的代码更加健壮和高效。 1. Java原生方法 a. trim…

电商核心技术揭秘56:客户关系管理与忠诚度提升

相关系列文章 电商技术揭秘相关系列文章合集&#xff08;1&#xff09; 电商技术揭秘相关系列文章合集&#xff08;2&#xff09; 电商技术揭秘相关系列文章合集&#xff08;3&#xff09; 文章目录 引言客户关系管理&#xff08;CRM&#xff09;的重要性提升顾客体验数据驱…

AWS之云种类与云服务模式

云种类分为3种&#xff1a; 公有云&#xff1a;任何个人或者企业都可以通过注册的方式直接使用的云。&#xff08;特点&#xff1a;使用简单&#xff1b;通过web界面快速购买。缺点&#xff1a;安全性低&#xff1b;使用资源是与其他用户共享。&#xff09; 私有云&#xff1…

Intel HDSLB 高性能四层负载均衡器 — 快速入门和应用场景

目录 文章目录 目录前言与背景传统 LB 技术的局限性HDSLB 的特点和优势HDSLB 的性能参数基准性能数据对标竞品 HDSLB 的应用场景HDSLB 的发展前景参考文档 前言与背景 在云计算、SDN、NFV 高速发展并普遍落地的今天&#xff0c;随着上云业务的用户数量越来越多、数据中心的规模…

umi项目配置之项目构建时配置umirc.ts

对于 umi 中能使用的自定义配置&#xff0c;你可以使用项目根目录的 .umirc.ts 文件或者 config/config.ts&#xff0c;值得注意的是这两个文件功能一致&#xff0c;仅仅是存在目录不同&#xff0c;2 选 1 &#xff0c;.umirc.ts 文件优先级较高 umi 的配置文件是一个正常的 n…

【vivado】 IBERT GT收发器误码率测试

一、前言 IBERT(Integrated Bit Error Ratio Tester),集成误码率测试仪。作为用户来说可以使用这个工具对自己设计的板子中的高速串行收发器进行简单测试&#xff0c;从而判断设计的接口是否有问题。因为这个工具是直接集成到FPGA上&#xff0c;这样一来直接使用这个工具来测试…

ubuntu下安装wireshark

1、安装wireshark 打开终端&#xff0c;输入安装命令 sudo apt-get install wireshark 2、启动 输入命令回车&#xff0c;一定要加上sudo sudo wireshark 3、看到有很多UDP、ARP、ICMP协议等的网络报文 4、以太网口抓取到的报文&#xff0c;列表属性分别为&#xff1a; 编号| 时…

STL----push,insert,empalce

push_back和emplace_back的区别 #include <iostream> #include <vector>using namespace std; class testDemo { public:testDemo(int n) :num(n) {cout << "构造函数" << endl;}testDemo(const testDemo& other) :num(other.num) {cou…

数据分析——对比思维、A/B test

对比分析 数据大小 &#xff1a;与中值、平均值、目标值、标准做对比数据波动&#xff1a;变异系数、方差、标准差数据趋势&#xff1a;时间维度和空间维度 其中 时间维度 横向比较&#xff08;连续7天每天的销售量&#xff09; 纵向比较&#xff08;同一时期不同品类对比&…

iframe父级元素高度百分比不生效

<iframe :src"iframeUrl" width"100%" height"100%" frameborder"0" /> 1、使用绝对定位&#xff1a;将 iframe 的父级元素设置为相对定位&#xff0c;并将 iframe 设置为绝对定位。这样&#xff0c;iframe 就可以根据父级元素…

实验十 智能手机互联网程序设计(微信程序方向)实验报告

实验目的和要求 完成以下页面设计。 二、实验步骤与结果&#xff08;给出对应的代码或运行结果截图&#xff09; Wxml <view class"container"> <view class"header"> <view class"logo"…

景源畅信:抖音小店比较冷门的品类分享?

在抖音小店的世界里&#xff0c;热门品类总是吸引着众多商家和消费者的目光。然而&#xff0c;就像星空中的繁星&#xff0c;虽不那么耀眼却依然存在的冷门品类同样值得我们关注。它们或许不似服装、美妆那样日进斗金&#xff0c;但正是这些小众市场的存在&#xff0c;为平台带…

Java面试之SpringCloud篇

Nacos有什么用&#xff1f; ①服务注册与发现 ②配置管理 Es为什么查询效率快&#xff1f; &#xff08;1&#xff09;首先&#xff0c;ES使用了倒排索引这种数据结构来快速查找文档。倒排索引是一种针对文本搜索而优化的数据结构&#xff0c;它将每个词与出现这个词的文档列…

Linux 服务器配置共享文件夹(NFS)

一、准备三台 linux 服务器 三台服务器: manger:172.16.11.178 ap1:172.16.11.179 ap2:172.16.11.180 /root/serverfiles/ 为共享目录 二、配置步骤 1、在服务端01的机器上安装nfs和rpcbind程序 yum -y install nfs* yum -y install rpcbind* 2、在安装完nfs以及rpcb…