Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
245 views
in Technique[技术] by (71.8m points)

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

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..
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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)

    }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...