gpt4 book ai didi

ios - 新 Xcode beta 新问题 : MKGeodesicPolyline

转载 作者:可可西里 更新时间:2023-11-01 05:43:14 28 4
gpt4 key购买 nike

全新的 Xcode 版本,除了删除大量添加空函数调用的地方外,还引入了一个有趣的问题,用一段简单的代码绘制了一条大地路径:

func drawPolyline(from startLocation: CLLocation, endLocation:CLLocation) {
let point1 = startLocation.coordinate
let point2 = endLocation.coordinate
var points: [CLLocationCoordinate2D]
points = [point1, point2]
var coordinates=points[0]
let geodesic = MKGeodesicPolyline(coordinates: &coordinates, count:2)
self.mapView.add(geodesic)
}

编译器提示:

Ambiguous use of 'init(coordinates:count:)'

当我试图点击给定的选项时,我总是被引导到那一行。我尝试清理该项目但无济于事。

最佳答案

在这种情况下,MKGeodesicPolyline 将使用 UnsafePointerUnsafeMutablePointer 使用您定义为点的类型 CLLocationCoordinate2D ,所以你可能想要:

let geodesic = MKGeodesicPolyline(coordinates: points, count: 2)

Apple Developer : CLLocation

关于ios - 新 Xcode beta 新问题 : MKGeodesicPolyline,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38271927/

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