I am currently working on a piece of functionality using the MapKit. I have ran into a slight problem. Currently I have all my annotations on my map and are displaying when you move the map around.
However, I am trying to get all my pins to be displayed at the same time. I know this isn't possible due to the below link and the limitations of the zoom - my pins can spread across the entire world.
Now I know this is outside of our control but in this scenario the map can sometimes centre between annotations. For example:
Pin in Antartica
Pin in Artic Ocean above Russia.
It will focus the centre of the map roughly on India - 1/2 point between the two pins.
Is there a way of forcing at least one or more pins to be visible if none are visible?
mapView.showAnnotations(mapView.annotations, animated: true)? - beyowulf