So I'm using Mapbox, and I don't want to use the userTrackingMode = .followWithHeading as this causes way too much lag on my device as you rotate it. Instead, I'd like to maybe incorporate the .rotationEffect(Angle(degrees: degree)) SwiftUI property. My map is pretty much the basic map found here (https://docs.mapbox.com/help/tutorials/ios-swiftui/). My map is initialized in the following way:
Map()
.edgesIgnoringSafeArea(.all)
//Here I tried to add a rotation effect, where the degree is the user heading, but this causes a weird graphical glitch because of the ignoring safe area property.
Any help in understanding how to rotate the view in this manner properly would be much appreciated.
The problem with your code is you rotate the view, which contains the map. The view is initially rectangular and the rotations are applied to this rectangle.
You can achieve this map rotation behavior with a
MKMapView
instance, but you have to do some additional work to use this class in SwiftUI. I have created aPlayground
showing how this can be achieved with aMKMapView
. For different angles, change theheading
of theMKMapCamera
likeThis is the playground code
These are the results I got for
heading = 0
andheading = 30
. Hope this helps you.