My app currently uses the camera with a custom overlay to take and save a picture.
Ideally, I would like to collect the following 3 paramaters at the time of photo capture as well:
- Precise GPS Location
- Compass direction
- Phone tilt
I’m mainly focused on getting items 1 & 2. Any ideas on how I could do this?
few variables you should declare on .h file of your viewController
in .m file at viewdidload method
These delegate method wil be called for where you get location updates
This will give you compass values updates
You can use these three values at the imagepicker’s didFinishPickingMediaWithInfo delegate method.