Gyroscope not allowed in iframe, any workarounds?

Hi.
I am implementing a gyroscopic feature to a panoramic image, but i get the error when trying to access the feature:
“The deviceorientation events are blocked by feature policy. See https://github.com/WICG/feature-policy/blob/master/features.md#sensor-features

This makes complete sense since i guess Wix will not allow my iframe to do certain things, but i do not understand why the gyroscope is part of this limitation?

Do anybody have a workaround?

To be more specific:
I have an iframe working with pannellum (https://pannellum.org),
everything works but the orientation, which obviously is getting limited by the WICG ( webappsec-feature-policy ) .
Does anybody know if i can disable parts of the WICG?

All the best
Toby

WixCode understands all of Javascript, except for anything that accesses the DOM. This keeps the user from inadvertently “breaking” something. I myself tried to hack things from the code, from an iFrame, and in my dreams, but WixCode wasn’t having any of it. Accessing document elements such as div, span, button, etc is off-limits. The way to access elements on the page is only through $w.

One small exception is the $w.HtmlComponent (which is based on an iFrame). This element was designed to contain vanilla HTML and it works just fine. You just can’t try to trick it by using parent, window, top, etc. Same goes with the Javascript evaluate() function. It is sandboxed and does not allow access to the DOM.