Can't capture google map with html2canvas

前端 未结 1 1206
心在旅途
心在旅途 2020-12-11 17:56

I have a problem when capture screen with html2canvas of html2canvas.hertzen.com, when I capture Map of google map in my page I can\'t see map

My map

相关标签:
1条回答
  • 2020-12-11 18:09

    The 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.com/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.

    0 讨论(0)
提交回复
热议问题