Reputation: 62634
How do I make a image, make it georeferenced and make it such that using the GPS, a blue dot appears where I am standing (assuming the image is there) in my iOS application. How do I approach this to georeference my image and accomplish this?
Upvotes: 0
Views: 273
Reputation: 395
The steps I would take are as follows :
MKMapView
in your UIViewController
and set
[viewController.mapView showsUserLocation:YES]
mapView
Good luck!
Upvotes: 0
Reputation: 14154
The only way to do this would be to use MKMapView. There is a property you can set, -showsUserLocation, that will show the blue dot you need.
If you need to show this over the top of a specific image... you will have to get creative with it. Maybe loading a custom image for an annotation. It can be done, just depends on how big of a map you plan to show and what your use case is. Hope this helps.
Upvotes: 1