This commit is contained in:
fmodf 2024-07-04 16:38:00 +02:00
parent c3679c9a2a
commit dfa048e918

View file

@ -5,22 +5,18 @@ import SwiftUI
struct AttachmentLocationPickerView: View { struct AttachmentLocationPickerView: View {
@State var region = MKCoordinateRegion() @State var region = MKCoordinateRegion()
@State var userTrackingMode: MapUserTrackingMode = .follow @State var userInteracting = false
var body: some View { var body: some View {
ZStack { ZStack {
Map( if userInteracting {
coordinateRegion: $region, Map(
interactionModes: .all, coordinateRegion: $region,
showsUserLocation: false, interactionModes: .all,
userTrackingMode: $userTrackingMode showsUserLocation: false,
) userTrackingMode: .constant(.none)
.overlay { )
Image(systemName: "mappin") .overlay {
.resizable()
.frame(width: 30, height: 30)
.foregroundColor(.Material.Elements.active)
if userTrackingMode != .follow {
VStack { VStack {
Spacer() Spacer()
HStack { HStack {
@ -31,12 +27,25 @@ struct AttachmentLocationPickerView: View {
.foregroundColor(.Material.Elements.active) .foregroundColor(.Material.Elements.active)
.padding() .padding()
.tappablePadding(.symmetric(10)) { .tappablePadding(.symmetric(10)) {
userTrackingMode = .follow userInteracting = false
} }
} }
} }
} }
} else {
Map(
coordinateRegion: $region,
interactionModes: .all,
showsUserLocation: false,
userTrackingMode: .constant(.follow)
)
.gesture(DragGesture().onChanged { _ in
userInteracting = true
})
} }
Image(systemName: "mappin")
.font(.system(size: 30))
.foregroundColor(.Material.Elements.active)
} }
} }
} }