У меня есть координаты в CloudKit как тип данных местоположения («Koordinaatit»). Я пытаюсь нарисовать MKPointAnnotation для отображения из этих координат, но я не знаю, как получить координаты от массива до аннотации.Координаты на MKPointAnnotation от CloudKit
var sijainnitArray:[CKRecord] = []
func drawPin(sijainti: Int) {
let annotation = MKPointAnnotation()
annotation.coordinate = CLLocationCoordinate2D(sijainnitArray[sijainti].Koordinaatit) //XCode shows error: Value of type 'CKRecord' has no memeber 'Koordinaatit'
self.mapView.addAnnotation(annotation)
}
func fetchRecordsFromCloud() {
let cloudContainer = CKContainer.default()
let publicDatabase = cloudContainer.publicCloudDatabase
let predicate = NSPredicate(value: true)
let query = CKQuery(recordType: "Sijainti", predicate: predicate)
publicDatabase.perform(query, inZoneWith: nil, completionHandler: {
(results, error) -> Void in
if error != nil {
print(error)
return
}
if let results = results {
print("Completed the download of locations data")
self.sijainnitArray = results
}
})
}
override func viewDidLoad() {
super.viewDidLoad()
fetchRecordsFromCloud()
let sijainnitLkm = sijainnitArray.count - 1
for i in 0...sijainnitLkm {
drawPin(sijainti: i)
}
}
**ANSWER**
let sijaintilista = self.sijainnitArray[i]
let sijaintiLatLong = sijaintilista.object(forKey: "Koordinaatit") as? CLLocation
let sijaintiLat = sijaintiLatLong?.coordinate.latitude
let sijaintiLon = sijaintiLatLong?.coordinate.longitude
let sourceLocation = CLLocationCoordinate2D(latitude: sijaintiLat!, longitude: sijaintiLon!)
let sourcePlacemark = MKPlacemark(coordinate: sourceLocation, addressDictionary: nil)
if let location = sourcePlacemark.location {
annotation.coordinate = location.coordinate
}
self.mapView.addAnnotation(annotation)
В locationManager местоположение сохраняется в CloudKit CKRecord как CLLocation, проблема в том, что я не знаю, как добавить CLLocation в MKPointAnnotation. let location = locations.last! пусть publicDatabase = CKContainer.default() publicCloudDatabase пусть записи = CKRecord (RecordType: "Sijainti"). record.setObject (расположение, forKey: "Koordinaatit") publicDatabase.save (запись, completionHandler: { (запись, ошибка) -> Void in – Erva
Итак, вы должны прочитать запись из cloudKit с помощью 'object (forKey:)', а затем перевести его в 'CLLocation' –
. Добавленное решение для моего ответа. – Erva