Webgl streetview with ie - virtual Tour Google

346 views Asked by At

I'm trying to add, in a Google Street View include in a website, , à map with a point moving during the visit.

See this exemple : http://www.culturemediatic.fr/demos/TestAPIVVP/point_qui_suit_la_visite.html

It wortks with Chrome and firefox, but not with ie and Smartphones.

I think the cause is with Webgl.

Help ?

2

There are 2 answers

0
user2969049 On

Problem issued with http://www.culturemediatic.fr/demos/TestAPIVVP/point_qui_suit_la_visite_pegman.html

With Mobile detect for html5/html4

2
Nick Rotondo On

This is actually unrelated to WebGL. In pov_changed(), you are setting the WebKit, Mozilla, and Opera prefixed variations of the “transform” property, but you are not setting the Microsoft-prefixed (msTransform) or unprefixed (transform) variants of the property. IE supports both the Microsoft-prefixed and the unprefixed variants. Adding either should fix your issue.

Disclosure: I am on a member of Microsoft’s Internet Explorer team.