When calling the ImagePicker to take a picture the user is not prompted to allow their location to be used to geo-tag the photo as with the native Camera app. Is it possible to turn on or build geo-tagging into the ImagePicker?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Well, you could simply get the photo via the ImagePicker, then prompt the user to approve getting their location (something you have to do anyway) and then store both image and location in your own object.
I don’t believe the Picker by itself embeds lat/long in the image. That’s likely something happening elsewhere in the Camera app.
You could check using this lib though:
http://code.google.com/p/iphone-exif/downloads/list
Good Luck!