-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No Exif Geolocation (Latitude/Longitude) Data on iOS #751
Comments
I'm also having this problem -- I see GPS data when uploading from the camera roll (with exif option enabled), but no GPS data when uploading right from the ImagePicker camera. @dancherb is this similar to the issue you are having? |
same here, any progress? |
@BigPun86 @drewandre @dancherb |
@haifahrul I didn't find a solution, no. |
met too |
Any progress on this ? |
any news? would be very usefull |
any updates on this? |
@sam17896 @gino8080 @dcoellarb @lighthx @drewandre
|
We're not getting any GPS info on iO using "react-native-image-crop-picker": "^0.36.0" and "react-native": "0.63.4" I think iOS has a new method to pick a photo using PHPicker. See this blog: https://www.felixlarsen.com/blog/photo-metadata-phpickerview and assuming that location permission is on then we should be able to get the EXIF metadata Any ideas how to get this working on IOS |
I think I've solved this. If you disable cropping, you will get the GPS info. After looking at the code, I've realized that cropping creates a new image which does not include the GPS info. |
even when cropping is off on v0.37.3 and rn v0.67.4 the gps location is missing on IOS |
The Geolocation data is there on iOS, it just sits under a different property:
Geolocation data for the same image on Android:
|
Copy Latitude and Longitude to `exif` property similar to Android. fixes ivpusic#751
This pull request should fix it: #1882 |
RN 0.55.3
react-native-image-crop-picker 0.20.3
On Android I receive an exif data object that includes the following:
On iOS, when trying the same images and freshly taken ones (that work with another module, react-native-image-picker), no geolocation data is returned.
The text was updated successfully, but these errors were encountered: