Internet Explorer 11 mouse wheel Zoom doesn't work on google maps api v3.
This is the latest version of IE
Workaround META page code: <meta http-equiv="X-UA-Compatible" content="IE=10" />
I assume this mouse wheel bug will be resolved in due course.
While geocodezip is technically correct in pointing out it's not officially supported per the documentation on the maps page, I suspect that the page just hasn't been updated yet as there are at least two defects already reported on this issue in new state:
defect 6071
defect 5944
I stumbled upon this while having this issue myself. I was using Google Maps API v3.12, but once I upgraded to the current release (3.15) it seemed to fix this problem.
Related
Hi I'm new here and I want to make a WebAR application using A-Frame. I know the basics and all that but one major problem I'm having is being able to walk around in the scene using ARCore running in Chrome. Is this even possible? I found a WebVR application from 6 years ago that solved the problem of positional tracking but the code's so depreciated it doesn't work anymore. I would prefer using ARCore for tracking but if nothing else marker based tracking will work too.
Edit: here's the depreciated code on github https://github.com/AVGP/goggle-paper
Doesn't use ARCore but instead marker based tracking. Better than nothing I suppose.
As of today, support for ARCore via the web (and thus A-Frame) is only available on Chrome browser with some Android devices.
Here are some great examples of working projects that you can build from:
https://github.com/chenzlabs/aframe-ar
https://aframe-ar.glitch.me/
New features such as image tracking are only available on Chrome Canary (experimental). See this example for image marker tracking:
https://arimg.glitch.me/
And associated documentation:
https://github.com/immersive-web/marker-tracking/blob/main/explainer.md
I am using .Net Framework version 4.5.50938 SP1. Internet Explorer 10.
Existing markup in .aspx page is following:
It works fine with IE 8. The problem is that it is not compatible with IE 10. When I click the Save button the button click event is not working. The Page is not navigating to anywhere- it stays stand still.
I tried to replace Telerik:RadButton with asp:Button, but it shows the following error: ASP.NET runtime error: The base class includes the field 'SaveButton', but its type (Telerik.Web.UI.RadButton) is not compatible with the type of control (System.Web.UI.WebControl.Button).
Any help is appreciated. Thanks!
That's an old version from before IE10 was out (your 2011 version is good for up to IE9), so it is likely that something will break. Upgrading is the way to go, as Mike said.
Another option to try is an X-UA Compatible meta tag, but I don't know if it will help much, because it is still not a real IE8/9 (whatever you put it into), but an IE10 with its own quirks, bugs and changes. Here is an example
<meta http-equiv="X-UA-Compatible" content="IE=8" />
I am completely puzzled and discouraged. There is the following problem on a website: Google AdSense banners are not showing up in Internet Explorer until the browser is somehow interacted with.
I have checked it on four completely different computers and the problem looks the same: the ads are not showing at all, until you do one of the following:
resize the window, or
press "alt" button on the keyboard, or
open up the console (F12)
In other words, the ads show up right in their right place after I somehow interact with the browser window. And that is happening in Internet Explorer 11! On four totally different computers.
I can't wrap my mind about it. Does anybody have any kind of idea what this might be?
I've finally found the solution. It was indeed a "ie-compatibility" issue, yet not obvious and not that easy to find.
Probably some wordpress plugin added the following line to the header:
<meta http-equiv="X-UA-Compatible" content="IE=7"/>
I changed it to
<meta http-equiv="X-UA-Compatible" content="IE=8"/>
And it worked. Why do I say it was not easy to find? Well, I played a lot with compatibility settings in the IE browser and nothing worked. And again the way the bug represented itself would never make me think that such line was responsible.
I have an problem related to Link Button Click event in asp.net on Internet Explorer 10.Link Button click event is not firing. It shows the javascript error
SCRIPT5009: '__doPostBack' is undefined
I have Windows Server 2008 Standard Without Hyper-v(6.0, Build 6001) on my system. I tried to fix this problem by Patch provided by Microsoft but that didn't work.I hope you understand my question very well and will give meaningful answer's.
Thanks in advance.
meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9"
meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8"
meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"
Problem occurred cause of:
There is a bug in the browser definition files that shipped with .NET 2.0 and .NET 4, namely that they contain definitions for a certain range of browser versions. But the versions for some browsers (like IE 10) aren't within those ranges any more. Therefore, ASP.NET sees them as unknown browsers and defaults to a down-level definition, which has certain inconveniences, like that it does not support features like JavaScript.
I also had same problem,I followed this article, and I'm sorted. Go through below link, It would help for sure.
Fix
Use compatibility meta tags for ie10 which makes your application to run in ie9
i.e.use meta tags for backward compatibility
The site I am working on uses Facebook Javascript SDK, as described here https://developers.facebook.com/docs/reference/javascript/, to allow users to login. The site is an ASP.NET MVC site.
It works on latest versions of Chrome, Firefox, Safari and also IE9.
However in windows 8 consumer preview using IE10 (in normal and compatibility mode) when logging into Facebook the popup window goes white and doesn't close. If close manually and refresh the original page I see that I am logged in.
I have looked through all other SO questions and searched the web. I have tried all the solutions and none of them work.
I am using the channelUrl correctly and it works in the other browsers. I also tried the IE10 bug fix here http://www.hanselman.com/blog/BugAndFixASPNETFailsToDetectIE10CausingDoPostBackIsUndefinedJavaScriptErrorOrMaintainFF5ScrollbarPosition.aspx
There really isn't much different from my code and the Facebook examples. So I think there is either a problem with IE10 or the Facebook API when using IE10.
Has anyone had similar problems and found a solution?
The problem was in the HTML. The meta tag for http-equiv was set to
<meta http-equiv="X-UA-Compatible" value="IE=8">
This causes IE10 to display the web page in IE8 mode. Changed this to 9 as it was meant to be and the Facebook popup box disapears.