How do you get the Maps in SwiftUI to show the User Location on the Apple Watch? Map(coordinateRegion: $mapSetupRegion, interactionModes: mapInteractionModes, showsUserLocation: mapShowUserLocation, userTrackingMode: $mapTrackingMode ) These are the variables we have been using. @State private var mapTrackingMode = MapUserTrackingMode.follow private var mapShowUserLocation = true private var mapInteractionModes = MapInteractionModes.all @State private var mapSetupRegion = MKCoordinateRegion( center: CLLocationCoordinate2D( latitude : 37.3318,longitude : -122.0312), span: MKCoordinateSpan( latitudeDelta : 0.1, longitudeDelta : 0.1 ) ) Thanks.
1
0
1.6k