问题描述
我正在尝试在 Angular 系统中创建一个函数,该函数将使用 html2canvas 生成地图图像 以下是当前功能:
window.emapComponent.service.getMap('mapApi').then((map) => {
html2canvas(document.getElementById("mapApi"),{ useCORS: true }).then(function (canvas) {
canvas.screenshotDataURI = canvas.toDataURL("image/jpg",0.5);
canvas.toBlob(function (blob) {
saveAs(blob,oRequest.fileName)
});
});
})
发生的情况是,在系统本身中,只要我用鼠标拖动地图,照片就会出现奇怪(附上文件)-
我注意到在 html 的元素中,虽然我看到图层的对象调整到地图,但实际上 div 本身是从一个地方拖到另一个地方的,这就是我在图片中得到的 我很乐意为您提供帮助
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)