Infeasible
Status Update
Comments
he...@gmail.com <he...@gmail.com> #2
I'm running Canon Utilities Map Utility Version 1.4.1.8 and just encountered the same error :
dr...@cis-group.com <dr...@cis-group.com> #3
Seem to be the same kind of issue from issue 9004 .
I added <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> in our webpage so it use IE11 instead of IE7 and it fixed my issue.
I added <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> in our webpage so it use IE11 instead of IE7 and it fixed my issue.
ma...@hale.at <ma...@hale.at> #5
Our .NET (WinForms) application uses the Micrsoft WebBrowser control and a thin JavaScript layer to display maps (Google Maps Java API). It worked for years without problems.
Since last week (17th or 18th August) this application also has the mentioned problem. When refreshing the map, most of the time a JavaScript error in poly.js occurs at the following statement:
var d=a.createElement("canvas");
d.width=d.height=256*b;
var e=d.getContext("2d"); <-- Error occurs here!
We also recognized that this script error does not occur always.
Maybe it depends on the duration the browser control needs to load the (whole) page - maybe the DOM is not loaded (completely) when this script tries to get the canvas?
BUT:
Adding the mentioned <meta> tag in our html file didn't change anything!
Since last week (17th or 18th August) this application also has the mentioned problem. When refreshing the map, most of the time a JavaScript error in poly.js occurs at the following statement:
var d=a.createElement("canvas");
d.width=d.height=256*b;
var e=d.getContext("2d"); <-- Error occurs here!
We also recognized that this script error does not occur always.
Maybe it depends on the duration the browser control needs to load the (whole) page - maybe the DOM is not loaded (completely) when this script tries to get the canvas?
BUT:
Adding the mentioned <meta> tag in our html file didn't change anything!
ma...@hale.at <ma...@hale.at> #6
Addition to our previous comment:
We found a solution which also works for us:
Instead of configuring the compatibility mode of the Microsoft WebBrowser control on the server side by adding <meta http-equiv="X-UA-Compatible" content="IE=edge"> to our html page(s) (which was not possible with our solution),
we configured the WebBrowser control on the client side by adding an appropriate entry to the windows registry:
"MyApp.exe"=dword:00002711
This changes the default configuration of the the WebBrowser control (act like version 7 of IE) to version 10 for the given app (exe file).
If you use a 32 bit application on a 64 bit version of Windows,
you will have to add the above registry entry under:
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION]
in all other cases (32 bit app on 32 bit Windows and 64 bit app on 64 bit Windows) you will have to add the above entry under:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION]
More information on this can be found at:
http://msdn.microsoft.com/library/ee330730(v=vs.85).aspx#browser_emulation
We found a solution which also works for us:
Instead of configuring the compatibility mode of the Microsoft WebBrowser control on the server side by adding <meta http-equiv="X-UA-Compatible" content="IE=edge"> to our html page(s) (which was not possible with our solution),
we configured the WebBrowser control on the client side by adding an appropriate entry to the windows registry:
"MyApp.exe"=dword:00002711
This changes the default configuration of the the WebBrowser control (act like version 7 of IE) to version 10 for the given app (exe file).
If you use a 32 bit application on a 64 bit version of Windows,
you will have to add the above registry entry under:
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION]
in all other cases (32 bit app on 32 bit Windows and 64 bit app on 64 bit Windows) you will have to add the above entry under:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION]
More information on this can be found at:
is...@gmail.com <is...@gmail.com> #9
For us, problems has been solved by adding <meta http-equiv="X-UA-Compatible" content="IE=edge">. But take care with ie8 or previous because it doesn´t work.
Thank you all for helping us.
Thank you all for helping us.
mi...@google.com <mi...@google.com> #11
If this affects IE9 and previous only, they are not supported browsers anymore.
As per:https://developers.google.com/maps/documentation/javascript/browsersupport
Internet Explorer's Compatibility View is not supported.
Support browsers:
The current version of Microsoft Edge (Windows)
Internet Explorer 10 and 11 (Windows)
As per:
Internet Explorer's Compatibility View is not supported.
Support browsers:
The current version of Microsoft Edge (Windows)
Internet Explorer 10 and 11 (Windows)
li...@gmail.com <li...@gmail.com> #12
Maps API only support IE9 and IE 11. Edge seems doesn't work well.
I added <meta http-equiv=”X-UA-Compatible” content=”IE=9;IE=11”> in my code, it fixed my issue.
I added <meta http-equiv=”X-UA-Compatible” content=”IE=9;IE=11”> in my code, it fixed my issue.
mv...@gmail.com <mv...@gmail.com> #16
I am encountering the poly.js error may be with the maps version 3.25 & above..
I used to get onion.js error w.r.t Issue 9004 ,
1.I tried meta IE=edge which did not work
2.tried with registry entry which also did not work
3.finally included json3.min.js which could do the job for me.
Now i am getting poly.js error when i open map containing poly lines
i tried with above mentioned options 1 & 2 there is no luck.
Please help !!
I used to get onion.js error w.r.t
1.I tried meta IE=edge which did not work
2.tried with registry entry which also did not work
3.finally included json3.min.js which could do the job for me.
Now i am getting poly.js error when i open map containing poly lines
i tried with above mentioned options 1 & 2 there is no luck.
Please help !!
[Deleted User] <[Deleted User]> #17
#16, I had the same issue. I resolved it by adding the <!DOCTYPE html> statement at the top. Remove your include for JSON if you have IE10. If you're using a DIV for the map canvas, then the DOCTYPE caused it to not show up for me so I had to add a style section to help it along. I used this: <style>html, body { padding: 0; margin: 0; min-height:100% !important; height: 100%; }</style>
FYI -- This only affected us on Windows 2012 and Windows 2008 without R2. They are capped at IE10. Also, you need to ensure that the webbrowser control is not limited to IE7. We used the registry hacks to resolve that part of the issue.
FYI -- This only affected us on Windows 2012 and Windows 2008 without R2. They are capped at IE10. Also, you need to ensure that the webbrowser control is not limited to IE7. We used the registry hacks to resolve that part of the issue.
mv...@gmail.com <mv...@gmail.com> #18
#17, Thanks for your reply,Unfortunately this did not work for me.
Our application is Windows MFC(MDI) based where google map is opened from internal browser control & its a 32-bit application running on 64-bit Windows 7.
Any other options to resolve??
Thanks in advance.
Our application is Windows MFC(MDI) based where google map is opened from internal browser control & its a 32-bit application running on 64-bit Windows 7.
Any other options to resolve??
Thanks in advance.
mv...@gmail.com <mv...@gmail.com> #19
#16 continued...
I have tried registry entries which did not work and changing the meta tag to edge also did not work..
I had jquery.1.4.2 version this gives access denied once i change the meta tag to edge after which i update to latest 3.1.1 version and jquery-ui.1.12.x ..now it did not give any access denied error. but a WHITE blank screen will appear.
This is not at all solving my issue and unable to view google maps on my embedded browser in MFC application.
I have tried many workarounds which did not help..this has become bottle neck please help to get rid of these..!!!!
I have tried registry entries which did not work and changing the meta tag to edge also did not work..
I had jquery.1.4.2 version this gives access denied once i change the meta tag to edge after which i update to latest 3.1.1 version and jquery-ui.1.12.x ..now it did not give any access denied error. but a WHITE blank screen will appear.
This is not at all solving my issue and unable to view google maps on my embedded browser in MFC application.
I have tried many workarounds which did not help..this has become bottle neck please help to get rid of these..!!!!
[Deleted User] <[Deleted User]> #20
#19, you're close! I tried all these and gave up on the white blank screen as well. Once I dug into it more, I realized the white blank screen was because I was setting the DIV's height and width to 100% and the control not liking it. Same HTML works in the browser, but not the control. To fix it, either hard code your DIV's height / width to something in pixels or if you need to use 100% like I did, then add the following style in the <head> section of your HTML:
<style>html, body { padding: 0; margin: 0; min-height:100% !important; height: 100%; }</style>
<style>html, body { padding: 0; margin: 0; min-height:100% !important; height: 100%; }</style>
mv...@gmail.com <mv...@gmail.com> #21
#20 ,Thanks for your reply.
I included(in <head section>) style provided by you, but i could see a BLANK WHITE screen again!!!
Also i did not see any DIV's height & width setting to 100%.
Still the white screen appears, i am running out of any options to solve.
I included(in <head section>) style provided by you, but i could see a BLANK WHITE screen again!!!
Also i did not see any DIV's height & width setting to 100%.
Still the white screen appears, i am running out of any options to solve.
mv...@gmail.com <mv...@gmail.com> #22
[Comment deleted]
mv...@gmail.com <mv...@gmail.com> #23
We have a 32 Bit MFC(MDI) application developed from Visual Studio. It runs on 64 Bit Windows 7.
We have a Web Browser control derived from CHTMLView, which used to load google maps.
As we by default Browser control has IE 7 settings I used to get a pop up error called poly.js in order to resolve this we had two options
1. Registry hacks using FEATURE_BROWSER_EMULATION which did not work for me.
2. <meta http-equiv="X-UA-Compatible" content="IE=edge"> this used to give access denied error because i had jquery version 1.4.2 which is very old.
The problem come here , after this access denied error i updated the jquery version to latest 3.1.0 and i dont get any error but i see WHITE BLANK SCREEN!!! this is the issue i am facing when i load
googles maps through the MFC Browser.
How to resolve this issue?? i have tried many workarounds but no luck.
Is there any way to update browser control default rendering version from IE7 to IE 10/11 or Edge?
This has become a nightmare for us!! please help to resolve this issue.
We have a Web Browser control derived from CHTMLView, which used to load google maps.
As we by default Browser control has IE 7 settings I used to get a pop up error called poly.js in order to resolve this we had two options
1. Registry hacks using FEATURE_BROWSER_EMULATION which did not work for me.
2. <meta http-equiv="X-UA-Compatible" content="IE=edge"> this used to give access denied error because i had jquery version 1.4.2 which is very old.
The problem come here , after this access denied error i updated the jquery version to latest 3.1.0 and i dont get any error but i see WHITE BLANK SCREEN!!! this is the issue i am facing when i load
googles maps through the MFC Browser.
How to resolve this issue?? i have tried many workarounds but no luck.
Is there any way to update browser control default rendering version from IE7 to IE 10/11 or Edge?
This has become a nightmare for us!! please help to resolve this issue.
mv...@gmail.com <mv...@gmail.com> #25
#20,I was getting the WHITE BLANK SCREEN for different issue. Thats because <meta tag content=Edge> works fine only with jQuery version 1.12.4 but not with 2.x.x or 3.x.x. Poly.js (popup error) problem is solved.
However,#20,thanks for your suggestion.
Finally,PROBLEM SOLVED.
However,#20,thanks for your suggestion.
Finally,PROBLEM SOLVED.
Description