Does anyone know of a way to change the placing of the compass in MKMapview?
I\'m talking about the compass that shows up in the upper right corner of the map when
Swift:
mapView.layoutMargins = UIEdgeInsets(top: 20, left: 0, bottom: 20, right: 0)
Where instead of 20 you could calculate your UI elements height to have a more dynamic solution adjusting to each device or element.