在Apple的文档中提到并解释了这种方法。有人可以指导我如何使用它吗?
convenience init(coordinates coords: CMutablePointer<CLLocationCoordinate2D>, count: Int)
答案 0 :(得分:2)
你可以像这样使用它:
let c1 = CLLocationCoordinate2D(latitude: 0.0, longitude: 0.0)
let c2 = CLLocationCoordinate2D(latitude: 1.0, longitude: 1.0)
var a = [c1, c2]
var polyline = MKPolyline(coordinates: &a, count: a.count)
我无法看到&#34; Swifter&#34;在文档中创建MKPolylines的方法......我假设他们仍然在这里构建桥梁。