在 iPhone mkmapview 中触摸触摸时获取地图的当前位置

发布于 2024-11-16 21:57:57 字数 52 浏览 3 评论 0原文

如何根据用户在 iPhone 上触摸地图上的位置来获取 mkmapview 中的位置坐标?

How can I get the location coordinates in mkmapview according to user touching a location on the map on their iphone?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

那小子欠揍 2024-11-23 21:57:57
func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {

    for touch in touches {
        let touchPoint = touch.location(in: mapView)
        let location = mapView.convert(touchPoint, toCoordinateFrom: mapView)
        print ("\(location.latitude), \(location.longitude)")
    }
}
func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {

    for touch in touches {
        let touchPoint = touch.location(in: mapView)
        let location = mapView.convert(touchPoint, toCoordinateFrom: mapView)
        print ("\(location.latitude), \(location.longitude)")
    }
}
东京女 2024-11-23 21:57:57

将 TapGesture 添加到您的地图视图并按照以下代码操作

-(void)didTouchMap:(UITapGestureRecognizer*)tapGesure {

         CGPoint touchPoint = [tapGesure locationInView:selectLocationMapView];
         CLLocationCoordinate2D coord= [selectLocationMapView convertPoint:touchPoint      toCoordinateFromView:selectLocationMapView];
         NSLog(@"lat  %f",coord.latitude);
         NSLog(@"long %f",coord.longitude);

}

Add TapGesture to you mapview and follow below code

-(void)didTouchMap:(UITapGestureRecognizer*)tapGesure {

         CGPoint touchPoint = [tapGesure locationInView:selectLocationMapView];
         CLLocationCoordinate2D coord= [selectLocationMapView convertPoint:touchPoint      toCoordinateFromView:selectLocationMapView];
         NSLog(@"lat  %f",coord.latitude);
         NSLog(@"long %f",coord.longitude);

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文