admin管理员组文章数量:1345329
I have a problem when capture screen with html2canvas of html2canvas.hertzen, when I capture Map of google map in my page I can't see map
My map
My capture
My code
html2canvas(document.body, {
onrendered: function(canvas) {
document.body.appendChild(canvas);
}
});
Anyone got a tip? Thanks
I have a problem when capture screen with html2canvas of html2canvas.hertzen., when I capture Map of google map in my page I can't see map
My map
My capture
My code
html2canvas(document.body, {
onrendered: function(canvas) {
document.body.appendChild(canvas);
}
});
Anyone got a tip? Thanks
Share Improve this question edited Jan 13, 2016 at 10:17 Adam Azad 11.3k5 gold badges31 silver badges72 bronze badges asked Jul 22, 2013 at 15:56 HoangHieuHoangHieu 2,8403 gold badges32 silver badges46 bronze badges 02 Answers
Reset to default 7The following works for me for Chrome and Firefox:
html2canvas(document.body, {
proxy: "server.js",
useCORS: true,
onrendered: function(canvas) {
document.body.appendChild(canvas);
}
});
where server.js is https://github./niklasvh/html2canvas-proxy-nodejs There are other proxies available for PHP and Python that I haven't tried yet. I cannot post both but if you google "html2canvas proxy" you'll be able to find the others if you need them.
html2canvas(document.body, {
proxy: "/my-proxy",
}).then((canvas) => {
document.body.appendChild(canvas);
});
IMPORTANT: Don't add useCORS: true if you using proxy: "/my-proxy" setting.
The plugin will send the request in the next format
https://your-site./my-proxy?url=https://path-to-image.jpg&responseType=blob
More information about the proxy server is available here.
本文标签: javascriptCan39t capture google map with html2canvasStack Overflow
版权声明:本文标题:javascript - Can't capture google map with html2canvas - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743760735a2534328.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论