摘要:
uniapp(安卓)之文件上传 uniapp提供的uni.chooseFile只支持H5和微信小程序,所以想上传除图片/视频外的非媒体文件,需要使用原生的方式开发。 uploadtxdr() { //使用plus选择文件 let that = this; let filePath = '' let 阅读全文
摘要:
openlayers之wms属性查询、空间查询 图层新建代码: let wmsSource = new ol.source.TileWMS({ url: config.dataSeverUrl, params: { 'FORMAT': 'image/png', 'VERSION': '1.1.1', 阅读全文
摘要:
uniapp之文件保存 文件保存分几种情况: 1.网络文件保存: 使用uni.downloadFile创建临时文件地址,然后使用uni.saveFile保存 uni.downloadFile({ //下载 url: path, success: (res) => { if (res.statusCo 阅读全文
摘要:
openlayers截图之图片跨域问题 报错: Error in v-on handler: "SecurityError: Failed to execute 'toBlob' on 'HTMLCanvasElement': Tainted canvases may not be exported 阅读全文
摘要:
vue3之跳转页面时判断是否跳转 onBeforeRouteLeave((to, from, next) => ( if (ruleAllChange .value){ ElMessageBoxconfirm( "数据未保存,请问是否继续跳转?", "确认" {confirmButtonText:" 阅读全文
摘要:
arcgisjs之图层滤镜 效果: 图层准备: 1.底图(天地图)tdtlayer()方法见:https://www.cnblogs.com/s313139232/p/17682138.html mapObj.layerYx = await tdtlayer().then((res) => { re 阅读全文
摘要:
arcgisjs之天地图加载封装 layer.js // // 天地图影像图层 export const tdtTdtlayer = async () => { let BaseTileLayer = await arcgisPackage('BaseTileLayer'); let Request 阅读全文
摘要:
js之转码(base64、ascii、十六进制、url) base64 npm install js-base64import { Base64 } from 'js-base64'; 编码: base64.encode("hello"); 解码: base64.decode("hello"); a 阅读全文
摘要:
Top-level await 新特性 「ECMAScript」提案 Top-level await 由 Myles Borins 提出,它可以让你在模块的最高层中使用 await 操作符。在这之前,你只能通过在 async 函数或 async generators 中使用 await 操作符。To 阅读全文
摘要:
vue3+tiff.js展示tif文件 场景:tif格式的文件需要在页面上预览(预览的tif文件较小) 组件:tiff.js npm install tiff.js 组件引入: import 'tiff.js'; 注意:网络上的信息引入使用import Tiff from 'tiff.js' 但是实 阅读全文