2

I have created a google map application to capture view of map. The working code is here. I am using html2canvas tool for capturing.

var captureMap = function(){
   html2canvas(document.getElementById("map-canvas"),{
       "useCORS": true,
       "allowTaint": true, 
       "logging": true,
       "onrendered": function (canvas) {                  
              document.getElementById('canvas').innerHTML="";
              document.getElementById('canvas').appendChild(canvas);
       }
      });
}

I can capture map image success with Mozilla Firefox and IE. But Chrome not working fine. Tiles are hidden when map move.

What is the problem of chrome?

barteloma
  • 6,403
  • 14
  • 79
  • 173

0 Answers0