摘要: 1. 下载MySQL安装包 安装包下载地址 https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.19-winx64.zip】 下载完后 解压到空间大的 盘符中 文件目录不要有中文和空格 添加环境变量 右击我的电脑 --> 属性 --> 高级 阅读全文
posted @ 2021-08-30 16:36 虹猫淘气 阅读(138) 评论(0) 推荐(0)
摘要: https://juejin.cn/post/7130534870182264839 阅读全文
posted @ 2021-08-30 16:27 虹猫淘气 阅读(247) 评论(0) 推荐(0)
摘要: 1.同步异步模式 1. 我们这里的同步异步 不是指我们写代码的方式 而是指 运行环境提供的 API 是以同步或者异步模式的方式工作2. 对于同步模式的API 它的特点呢 就是这个任务执行完 它的其它代码才会往下走 例如 console3. 而对于异步模式的API来说 它就是 下达这个任务开启过后的指 阅读全文
posted @ 2021-08-30 16:26 虹猫淘气 阅读(129) 评论(0) 推荐(0)
摘要: 初始化 Cesium Viewer const viewer = new Cesium.Viewer('cesiumContainer', { terrainProvider: Cesium.createWorldTerrain() }); 绘制道路 使用 `Entity` 来绘制道路,并设置发光效 阅读全文
posted @ 2021-08-30 16:26 虹猫淘气 阅读(842) 评论(0) 推荐(0)
摘要: 创建波纹特效 function createRipple(center) { const ripple = viewer.entities.add({ position: center, ellipse: { semiMinorAxis: 100000.0, // 波纹半径 semiMajorAxi 阅读全文
posted @ 2021-08-30 16:26 虹猫淘气 阅读(198) 评论(0) 推荐(0)
摘要: 使用 `Entity` 来加载 GLB 模型。您需要提供模型的 URL 和位置。 const modelUrl = 'path/to/your/model.glb'; // 替换 GLB 模型路径 viewer.entities.add({ name: 'My GLB Model', positio 阅读全文
posted @ 2021-08-30 16:25 虹猫淘气 阅读(530) 评论(0) 推荐(0)
摘要: 安装cesium npm install cesium 配置 Cesium 在 `vue.config.js` 中配置 Cesium,确保正确处理静态资源。创建或编辑 `vue.config.js` 文件 // vue.config.js const path = require('path'); 阅读全文
posted @ 2021-08-30 16:24 虹猫淘气 阅读(189) 评论(0) 推荐(0)
摘要: 设置 Cesium 和图表库 npm install chart.js //安装chart.js 创建 Cesium 组件 <template> <div> <div id="cesiumContainer" style="width: 100%; height: 70vh;"></div> <ca 阅读全文
posted @ 2021-08-30 16:22 虹猫淘气 阅读(97) 评论(0) 推荐(0)
摘要: <template> <div> <div id="cesiumContainer" style="width: 100%; height: 70vh;"></div> <canvas id="myChart" style="width: 100%; height: 30vh; cursor: mo 阅读全文
posted @ 2021-08-30 16:15 虹猫淘气 阅读(24) 评论(0) 推荐(0)