gpt4 book ai didi

swift - 在 SwiftUI 中点击 MKMapView

转载 作者:行者123 更新时间:2023-12-05 00:56:01 24 4
gpt4 key购买 nike

我在 SwiftUI 应用中有一张 map 。它正在发挥作用;但现在我希望能够点击它并知道点击的纬度和经度。这是当前代码:

import SwiftUI
import MapKit

struct MapView: UIViewRepresentable {
@Binding var centerCoordinate: CLLocationCoordinate2D

func makeUIView(context: Context) -> MKMapView {
let mapView = MKMapView()
mapView.delegate = context.coordinator

let gRecognizer = UITapGestureRecognizer(target: context.coordinator,
action: #selector(Coordinator.tapHandler(_:)))
mapView.addGestureRecognizer(gRecognizer)
return mapView
}

func updateUIView(_ view: MKMapView, context: Context) {
//print(#function)
}

func makeCoordinator() -> Coordinator {
return Coordinator(self)
}

class Coordinator: NSObject, MKMapViewDelegate {
var parent: MapView

init(_ parent: MapView) {
self.parent = parent
}

let gRecognizer = UITapGestureRecognizer(target: self,
action: #selector(tapHandler(_:)))

@objc func tapHandler(_ gesture: UITapGestureRecognizer) {
print(#function)
.... get useful information here ...
}
}
}

在这种状态下,我可以在点击时看到,但我没有获得所需的信息(即点击的坐标)。在网上搜索后,我尝试了一些代码的变体。在这一点上,它还没有工作。非常欢迎任何有关前进道路的相关提示。

最佳答案

我有类似的情况,这就是我所做的。我制作了 Coordinator UIGestureRecognizerDelegate,并确保将 gRecognizer 委托(delegate)设置为它,并将其添加到 map 中。比如:

struct MapView: UIViewRepresentable {
@Binding var centerCoordinate: CLLocationCoordinate2D

let mapView = MKMapView()

func makeUIView(context: Context) -> MKMapView {
mapView.delegate = context.coordinator
return mapView
}

func updateUIView(_ view: MKMapView, context: Context) {
//print(#function)
}

func makeCoordinator() -> Coordinator {
return Coordinator(self)
}

class Coordinator: NSObject, MKMapViewDelegate, UIGestureRecognizerDelegate {
var parent: MapView

var gRecognizer = UITapGestureRecognizer()

init(_ parent: MapView) {
self.parent = parent
super.init()
self.gRecognizer = UITapGestureRecognizer(target: self, action: #selector(tapHandler))
self.gRecognizer.delegate = self
self.parent.mapView.addGestureRecognizer(gRecognizer)
}

@objc func tapHandler(_ gesture: UITapGestureRecognizer) {
// position on the screen, CGPoint
let location = gRecognizer.location(in: self.parent.mapView)
// position on the map, CLLocationCoordinate2D
let coordinate = self.parent.mapView.convert(location, toCoordinateFrom: self.parent.mapView)

}
}
}

关于swift - 在 SwiftUI 中点击 MKMapView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63110673/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com