Using IE 11, Windows 8.1.
I'm plugging in the following into a windows form application:
var html = "<iframe width=\"425\" height=\"350\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" " +
"src=\"https://maps.google.com/maps?f=d&source=s_d&saddr=Oklahoma+City,+OK&daddr=texas&hl=en&" +
"geocode=FSgxHQIddAQw-imB0vh-VIqthzGdOk_RdBKiMw%3BFVfN5wEdi54L-ilJMoILNnBAhjE83ggYjxzrFg&aq=t&sll=39.632471," +
"-56.554076&sspn=61.466508,135.263672&mra=ls&ie=UTF8&t=m&z=7&output=embed\">" +
"</iframe>" +
"<br /><small><a href=\"https://maps.google.com/maps?f=d&source=embed&saddr=Oklahoma+City,+OK&daddr=texas" +
"&hl=en&geocode=FSgxHQIddAQw-imB0vh-VIqthzGdOk_RdBKiMw%3BFVfN5wEdi54L-ilJMoILNnBAhjE83ggYjxzrFg&aq=t&" +
"sll=39.632471,-56.554076&sspn=61.466508,135.263672&mra=ls&ie=UTF8&t=m&z=7\" style=\"color:#0000FF;" +
"text-align:left\">View Larger Map</a></small>";
webBrowser1.DocumentText = (html);
Now I want to print this as seen, but it doesn't show the directions lines when I got to printpreview
private void button1_Click(object sender, EventArgs e)
{
this.webBrowser1.ShowPrintPreviewDialog();
}
I have tried different browser emulations and still no way to print the direction lines in google maps. IE6 - 11 with no luck.
SetBrowserFeatureControlKey("FEATURE_BROWSER_EMULATION", fileName, GetBrowserEmulationMode());
public static UInt32 GetBrowserEmulationMode()
{
int browserVersion = 7;
using (var ieKey = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Internet Explorer",
RegistryKeyPermissionCheck.ReadSubTree,
System.Security.AccessControl.RegistryRights.QueryValues))
{
var version = ieKey.GetValue("svcVersion");
if (null == version)
{
version = ieKey.GetValue("Version");
if (null == version)
throw new ApplicationException("Microsoft Internet Explorer is required!");
}
int.TryParse(version.ToString().Split('.')[0], out browserVersion);
}
// Internet Explorer 10. Webpages containing standards-based !DOCTYPE directives are displayed in IE10 Standards mode. Default value for Internet Explorer 10.
UInt32 mode = 11000;
switch (browserVersion)
{
case 7:
// Webpages containing standards-based !DOCTYPE directives are displayed in IE7 Standards mode. Default value for applications hosting the WebBrowser Control.
mode = 7000;
break;
case 8:
// Webpages containing standards-based !DOCTYPE directives are displayed in IE8 mode. Default value for Internet Explorer 8
mode = 8000;
break;
case 9:
// Internet Explorer 9. Webpages containing standards-based !DOCTYPE directives are displayed in IE9 mode. Default value for Internet Explorer 9.
mode = 9000;
break;
case 10:
// Internet Explorer 9. Webpages containing standards-based !DOCTYPE directives are displayed in IE9 mode. Default value for Internet Explorer 9.
mode = 10000;
break;
default:
// use IE10 mode by default
break;
}
return mode;
}
Can anyone help me find out why this doesn't print the directions lines? Keep in mind, directly plugging in this html into a .html file and opening with IE, will show the directions lines. But they do not print.
Update
Using IE, you can plug in the following into a document with extension html.
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?f=d&source=s_d&saddr=Mesa,+AZ+85201&daddr=85258&hl=en&geocode=FXkl_gEduWFV-Sm5aealKggrhzGuOvW7FLWhww%3BFQ8xAAIdIJBU-SmHMd6RyworhzFB0o03Vh1_HQ&aq=t&sll=34.168218,-111.930907&sspn=16.819377,33.815918&mra=ls&ie=UTF8&t=m&ll=33.511629,-111.898842&spn=0.100189,0.145912&z=12&output=embed"></iframe><br /><small><a href="https://maps.google.com/maps?f=d&source=embed&saddr=Mesa,+AZ+85201&daddr=85258&hl=en&geocode=FXkl_gEduWFV-Sm5aealKggrhzGuOvW7FLWhww%3BFQ8xAAIdIJBU-SmHMd6RyworhzFB0o03Vh1_HQ&aq=t&sll=34.168218,-111.930907&sspn=16.819377,33.815918&mra=ls&ie=UTF8&t=m&ll=33.511629,-111.898842&spn=0.100189,0.145912&z=12" style="color:#0000FF;text-align:left">View Larger Map</a></small>
This will print everything correctly in firefox. I have tested this out on multiple printers.
This does not print correctly in IE. I have tried the following:
https://support.google.com/maps/answer/21849?hl=en
Any ideas on how to get the lines to show up?