I have used
html {
-ms-touch-action: none;
touch-action: none;
}
in styles and
this.CordovaView.DisableBouncyScrolling = true;
on .cs file of Cordova MainPage.xaml.cs
file.
With these fixes I can advance this much:
- Before state: map bounces on every touch, no pan possible
- After state: no bounce anymore, pan freezes in one minute of usage.
How could I get map functioning with pan events so that map does not freeze, stop working after some swipes there and here? Why map "remembers" some touch event outside the map and zoom happens with one finger only.
My sources:
[1] https://github.com/vilic/cordova-plugin-fix-wp-bouncing
[2] Prevent scrolling out of CordovaView in Cordova for Windows Phone 8