There are problems with SVG printing in Firefox 1/2, but in FF3 this
issues are solved, at least on windows systems. So, why not update the
API and enable svg printing in FF3(+)?
As a workaround, add this to your code:
// ... your map load ...
if (_mSvgEnabled) { setTimeout("DelGmnoprint();",500)};
// ...
function DelGmnoprint() {
var sd = document.getElementsByTagName('svg');
for (var n = 0 ; n < sd.length ; n++ ) {
if (sd[n].parentNode.className == 'gmnoprint') {
sd[n].parentNode.className = '';
}
setTimeout("DelGmnoprint();",100);
}
Tested on WinXP, Firefox3. Everything looks OK...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---