Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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|improve this question

1 Answer

up vote 4 down vote accepted

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!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.