Google Maps API V3 pinch-to-zoom does not work with IE 11 on Windows 8.1 preview
Asked Answered
O

1

7

Trying to use pinch-to-zoom on multitouch screen with Windows 8.1 preview and Internet Explorer 11 (IE later on) does not work with Google Maps API V3 (none of the latest versions: 3.12, 3.13 and 3.14). The expected behaviour is map zooming in and out.

The same feature is working just fine with Windows 8 and IE 10.

There seem to be two exceptions for the case:

Does anyone know how that is achieved so that it could be used until the issue is fixed?

Onomatopoeia answered 21/8, 2013 at 15:22 Comment(3)
It doesn't work on mouse scroll wheel as well. It seems to happen in anything full-screen-ish. I tried here: [link]google-developers.appspot.com/maps/documentation/javascript/…Jitters
Regarding the mouse scroll issue please upvote: code.google.com/p/gmaps-api-issues/issues/detail?id=5944Cerelia
Regarding pinch-to-zoom upvote the following issue: code.google.com/p/gmaps-api-issues/issues/detail?id=5747Cerelia
D
0

For the time being you can add this meta tag to your head tag (make sure it's the first tag after the head)

<meta http-equiv="X-UA-Compatible" content="IE=10" />

That will fix the problem for IE 11 users because the browser will behave as an IE 10 browser.

When Google fixes the bug you can put it back to IE=edge or just remove it.

EDIT : The bug has been fixed by now

Deangelo answered 19/1, 2014 at 4:28 Comment(2)
Doesn't work for me. I add this right after <head> (or even after </head>) and pinch to zoom still does not work.Cerelia
It's already fixed now in the experimental version developers.google.com/maps/documentation/javascript/examples/…Deangelo

© 2022 - 2024 — McMap. All rights reserved.