Norman Breau
Norman Breau
Closing as stale. iOS Splashscreen code has been migrated to the core platform. If issue persists on current versions of cordova-ios, please raise a new issue in the [cordova-ios](https://github.com/apache/cordova-ios/issues) repository.
I believe this plugin is already compatible. It seems like if you request `FINE` location, then starting API 31, you **must** also request `COARSE` permission at the same time. >...
> Yes, that's the case. I would argue that the media plugin should interoperate 'https://localhost' (port 80 only) urls and resolve its native file path internally. Removes the need for...
I've created a gist that covers the top reasons why you may not receive GPS results in a timely fashion which can be read [here](https://gist.github.com/breautek/d6231fa33d6942c269296546892afb5e) Note that iOS on a...
Couple of notes on why you may not be seeing gps updates 1. You're in a poor environment, such as in a large office building or basement. 2. Ios implements...
The described behaviour really sounds like an environmental issue. But here is a couple more tips... I don't access to an iOS device at this moment, and I'm not very...
The timestamp attached to the geolocation event reflects the time of when the event was captured. When requesting GPS point, the native SDK will return the last known good GPS...
> You have an option (maximumAge) for exactly that Note quite. You can see the javascript callback for `getCurrentPosition` on starting on [line 79](https://github.com/apache/cordova-plugin-geolocation/blob/6fd784740cd232277284933811d08f9c74f33c22/www/geolocation.js#L79) If `maximumAge` is set and greater...
Yes, being in buildings can hinder the ability to receive accurate GPS points, or hinder the ability to receive at all. Being surrounded by tall buildings like in a city...
If you use the `getCurrentPosition` API like in your original post, it will always return the last known GPS point received. If you use the `watchPosition` API (which you should...