无法将类型“ [字典]”的值转换为预期值 参数类型'UnsafePointer'
是在尝试将坐标插入数组时出现的错误。
这是我的代码:
var locations: [CLLocationCoordinate2D] = []
//Updating location + polylines
@objc func update()
{
Annotationtimer = Timer.scheduledTimer(withTimeInterval: 10, repeats: true, block: { (timerr) in
let currentLat = self.locationManager.location?.coordinate.latitude
let currentLong = self.locationManager.location?.coordinate.longitude
let location = [(currentLat!), (currentLong!)]
self.locations.append(location) //HERE IS THE ERROR
print(self.locations)
//Draw polyline on the map
let aPolyLine = MKPolyline(coordinates: locations, count: locations.count)
//Adding polyline to mapview
self.mapView.addOverlay(aPolyLine)
})
}
我正在尝试将当前位置插入数组,当我按下按钮时,我想从头开始绘制所有折线。
我在做什么错?如何正确插入坐标?我已经阅读了有关此的其他主题,但实际上没有一个主题在起作用。所以我要创建一个新的。
为什么不喜欢?至少您可以告诉我原因。
答案 0 :(得分:0)
currentLat
和currentLong
变量是String
,数组类型是CLLocationCoordinate2D
。
您无需提取currentLat
和currentLong
,最好这样做:self.locations.append(self.locationManager.location?.coordinate)
此外,我的建议-使用guard
可以避免在self.locationManager.location == nil
的情况下使应用程序崩溃。
所以,这是一个示例:
guard let currentLocation = self.locationManager.location else { return } // show error or something else
self.locations.append(currentLocation)