gpt4 book ai didi

ios - 如何将 MKMapPoint 转换为 CGPoint

转载 作者:行者123 更新时间:2023-11-28 17:59:44 25 4
gpt4 key购买 nike

任何人都可以解释如何将 MKMapPoint 转换为 CGPoint 吗?我需要在 UIView 上使用纬度和经度绘制路径。

最佳答案

接受的答案将 CLLocationCoordinate2D 转换为 CGPoint,这不是实际问题中的要求。对于那些在这里寻找完整答案的人来说,它是:

MKMapPoint mapPoint = MKMapPointMake(22.1, 34.4);//example

//first convert MKMapPoint to CLLocationCoordinate2D
CLLocationCoordinate2D mapPointCoordinate = MKCoordinateForMapPoint(mapPoint);

//second convert CLLocationCoordinate2D to CGPoint
CGPoint pointAsCGPoint = [self.mapView convertCoordinate: mapPointCoordinate toPointToView: self.mapView];

关于ios - 如何将 MKMapPoint 转换为 CGPoint,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15964549/

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