I have a little problem in pdf generation... When in wkhtmltopdf i execute with an Html page that have Bing Maps, and that PDF occupies more than 1 page, the second and third page came an strange image...
让我举几个例子:
For construction of Bing Maps i use this API: http://msdn.microsoft.com/en-us/library/gg427611.aspx
var defaultOptions = {
credentials: "myCredential",
enableClickableLogo: false,
enableSearchLogo: false,
showDashboard: false,
showCopyright: false,
tileBuffer: 0
};
var mapOptions = {
center: { latitude: latitude, longitude: longitude },
zoom: 14,
move: function(address) {...},
beforeMove: function() {...}
};
var map = new Microsoft.Maps.Map(document.getElementById(divId), $.extend({}, this.defaultOptions, options))
是否有任何人面临这一问题? 任何人都知道这样做的可能解决办法?
增 编