摘要: wps之使用宏修改全篇表格样式 宏使用步骤: 1.【工具】》【开发工具】 2.运行宏 3.创建宏 4.编辑宏 5.编辑后不用保存,直接关闭编辑页面 6.运行宏 注意事项: 保存文档前需要删除或者保存宏 JS宏代码: 1.修改表格和表头底色 /** * 修改表格样式 Macro */ function 阅读全文
posted @ 2026-08-14 17:27 莫小龙 阅读(11) 评论(0) 推荐(0)
摘要: geoserver之强制配置OnlineResource 问题: /geoserver/sxyd1/wms?request=GetCapabilities&service=WMS链接中的OnlineResource值为127.0.0.1 现在需要解析该文件调取服务。 解决办法: 再geoserver 阅读全文
posted @ 2026-08-14 17:18 莫小龙 阅读(1) 评论(0) 推荐(0)
摘要: mysql之将shp转化为wkt,然后存储再geomerty字段内 场景:用作geoserver连接mysql数据库生成地图服务 流程: 将shp数据转换为WKT数据存储在excel中。 注意:wkt过长可能会被excel截断。可使用txt格式数据导入。 注意:数据转换可参考:https://www 阅读全文
posted @ 2026-07-10 10:48 莫小龙 阅读(10) 评论(0) 推荐(0)
摘要: cesium之用着色器添加建筑贴图 ceslum版本:1.88.0 方法: addTileset(url, color, name) { const Cesium = window.Cesium; // 必须开启 ModelExperimental 才能使用 customShader Cesium. 阅读全文
posted @ 2026-07-08 15:36 莫小龙 阅读(27) 评论(0) 推荐(0)
摘要: uniapp之plus.downloader.createDownload下载文件传参 let pathurl = config.uni_app_web_api_url + url; let tocken = storage.get("tocken"); let header = {} if (to 阅读全文
posted @ 2026-04-01 10:42 莫小龙 阅读(25) 评论(0) 推荐(0)
摘要: 谷歌之将网页保存为图片 1.代开控制台F12 2.shift+ctrl+P 3.查找 Capture full size screenshot,点击后网页将保存并下载 出处:@唐 阅读全文
posted @ 2025-12-19 09:41 莫小龙 阅读(20) 评论(0) 推荐(0)
摘要: elementui之table中相同数据的单元格合并 方法代码: objectSpanMethod({ row, column, rowIndex, columnIndex }) { let list = this.sjzbtjList // this.sjzbtjList 为列表数据 let co 阅读全文
posted @ 2025-11-20 10:48 莫小龙 阅读(29) 评论(0) 推荐(0)
摘要: krpano之使用教程 安装破解: http://www.kkx.net/soft/69714.html 使用教程: http://www.krpano360.com/xunxujianjin4-shiyongdropletgongjushengchengdiyigemanyou/ 功能:可将全景图 阅读全文
posted @ 2025-08-09 10:42 莫小龙 阅读(29) 评论(0) 推荐(0)
摘要: threejs之灯光不跟随OrbitControls控制器旋转 场景:添加光效后,灯光相对物体静止,无法达到旋转物体展示的效果 方法:使用THREE.Group()将灯光打组,然后在animate中将灯光的四元数拷贝成相机的四元数即可 代码:(添加灯光并打组) lightHolder = new T 阅读全文
posted @ 2025-08-08 18:23 莫小龙 阅读(35) 评论(0) 推荐(0)
摘要: threejs之将张纹理图片组成材质组 const texture1 = textureLoader.load('./static/img/1.jpg'); const texture2 = textureLoader.load('./static/img/2.jpg'); const custom 阅读全文
posted @ 2025-08-05 13:49 莫小龙 阅读(18) 评论(0) 推荐(0)