I'm doing an app that does photo uploading to a service. I can take a picture, get it from the library upload it then and so on. Works like a charm. My only issue is that if I get a picture from the library I can get the geo location of that image with the [ALAssetsLibrary assetForURL:url resultBlock:resultblock failureBlock:failureblock] method. If I take an image directly with the UIImagePickerController with the source type camera the image does not have any location data. How can I get location data into that image (and I would prefer to have it in the exif data of the image as well)?
Bests, Philip