Is it possible to display a static image instead of the default MapView, where the current location is always the center of the image?
I want to display an image where the center is current position and add pins on it depending on coordinates (distance and direction). I want to calculate distance between too and maybe rotate the image/pins depending on which direction the phone is pointing.
I thought it might be easiest to do with a MKMapView
and replace it with a static image, as I can use all the build-in functionality, but right now it seems impossible to change the map to a static image?
I could also just paint directly on an image, but how would that work, and should I do that? I guess it would be something with polar coordinates.