How to get borough from UK postcode using CoreLocation in swift?

时光怂恿深爱的人放手 提交于 2019-12-13 08:49:04

问题


Does anyone know if I can get the borough from a UK post code using CoreLocation framework? In the function listed below, the borough is not returned. It should return Tower Hamlets.

  func getLocationFrom(postalCode : String){
    let geocoder = CLGeocoder()

    geocoder.geocodeAddressString(postalCode) {
        (placemarks, error) -> Void in
        let placemark = placemarks?[0] 
             print("placemark.addressDictionary are \(placemark.addressDictionary)") //does not print Canary Wharf  
    }
}

print(getLocationFrom(postalCode:"E14 9LR")) //does not print Tower Hamlets, it prints London, which is the city, not the borough..

回答1:


In order to get the locality from a postcode you just have to subscript placemarks array and then access the property locality for the element at the indexPath you want. My mistake was that I was trying to access another property on the placemarks array, namely addressDictionary which was not producing the expected result.

 func getLocationFrom(postalCode: String, callback: @escaping(_ locality: String?) -> Void){


    let geocoder = CLGeocoder()
    geocoder.geocodeAddressString(postalCode) {
        (placemarks, error) -> Void in

       callback(placemarks?[0].locality)

    }


来源:https://stackoverflow.com/questions/49221732/how-to-get-borough-from-uk-postcode-using-corelocation-in-swift

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!