How do you get the Maps in SwiftUI to show the User Location on the Apple Watch?
These are the variables we have been using.
Thanks.
Code Block Map(coordinateRegion: $mapSetupRegion, interactionModes: mapInteractionModes, showsUserLocation: mapShowUserLocation, userTrackingMode: $mapTrackingMode )
These are the variables we have been using.
Code Block @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.