I would like to disable zoom for a progressive web application running on IOS 13.0 or higher.
I have seen quite a few similar queries, but with seemingly incomplete answers. I tried to find a solution using multiple event listeners like touchstart and touchmove to block the default browser event [ event.stopPropagation(), event.preventDefault()] and played around with touch-action ... but to no avail.
Disable pinch zoom on IOS 13 safari
html meta viewport user-scalable=no seemed no longer working on iOS 13.3
And for doubleclick zoom disabling as well, I have a similar issue
Disable double tap zoom on Safari iOS 13 +
Thank you in advance for your help,
Stuart