Hi
I am trying to get the location of the user in my PWA on iOS (iPhone) - Safari/Chrome
const position = await Plugins.Geolocation.getCurrentPosition();
The function is not delivering the location which is a pity, because debugging is a bit hard (I am using toast message - sadly).
I also tried trough
navigator.geolocation.getCurrentPosition((position) => {
With same results -> nothing.
Does anyone have seen this issue or has been able to obtain current position in iOS PWA succesfully?
Working flawlessly on Android Tablet, and Chrome on PC.
Thanks
Tom