我在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 ...
}
}
}
在这种状态下,我可以看到当我点击,但我没有得到我需要的信息(即坐标的点击)。我已经尝试了一些变化的代码后,搜索网。此时它尚未工作。任何相关的提示在去的路上将是非常受欢迎的。
2条答案
按热度按时间j8ag8udp1#
我也遇到过类似的情况,这就是我所做的。我创建了Coordinator UIGestureRecognizerDelegate,并确保gRecognizer delegate被设置为它,然后将它添加到Map中。类似于:
iszxjhcz2#
我在macOS上运行的SwiftUI应用程序在Map上获取点击位置时遇到了类似的问题,所以很明显,我必须使用
NSViewRepresentable
而不是UIViewRepresentable
。@workingdog的回答帮了大忙;下面是我的macOS版本,它在
Text
视图中显示单击的位置,Z堆叠在Map的顶部: