以下是我有的代码:
CLGeocoder().geocodeAddressString(searchBar.text!,completionHandler:{ (placemarks,error) -> Void in guard let nonNilMarks = placemarks else {return} for placemark in nonNilMarks { print("locality: \(placemark.locality)") print("name: \(placemark.name)") print("country: \(placemark.country)") print("formatted address: \(placemark.addressDictionary)") } })
它在大多数情况下效果很好.但是,最近我注意到一些失败的情况.下面是一些例子的输出:
搜索“米兰” – 工作
locality: Optional("Milan") name: Optional("Milan") country: Optional("Italy") formatted address: Optional([SubAdministrativeArea: Milan,State: Lombardy,CountryCode: IT,Country: Italy,Name: Milan,FormattedAddressLines: ( Milan,Italy ),City: Milan])
这是正确的输出
搜索“意大利,德克萨斯州” – 工作
得克萨斯有一个城市叫做意大利.如果我输入’意大利,TX’的输出是:
locality: Optional("Italy") name: Optional("Italy") country: Optional("United States") formatted address: Optional([SubAdministrativeArea: Ellis,State: TX,CountryCode: US,Country: United States,Name: Italy,FormattedAddressLines: ( "Italy,TX","United States" ),City: Italy])
搜索“意大利” – 失败
当我输入’意大利’时,我只得到国家的地方标记:
locality: nil name: Optional("Italy") country: Optional("Italy") formatted address: Optional([CountryCode: IT,FormattedAddressLines: ( Italy ),Country: Italy])
寻找“新加坡,新加坡” – 工作
这与“意大利,德克萨斯州”的情况类似:
locality: Optional("Singapore") name: Optional("Singapore") country: Optional("Singapore") formatted address: Optional([City: Singapore,CountryCode: SG,Name: Singapore,State: Singapore,FormattedAddressLines: ( Singapore,Singapore ),Country: Singapore])
寻找“新加坡” – 失败
再次,似乎与“意大利”的情况相似.它只找到一个国家:
locality: nil name: Optional("Singapore") country: Optional("Singapore") formatted address: Optional([CountryCode: SG,FormattedAddressLines: ( Singapore ),Country: Singapore])
初步猜测
在这个阶段我可能是geocodeAddressString:停止搜索,如果它找到一个名称等于search参数的国家,所以我尝试将我的代码改为:
let addrDict = [kABPersonAddressCityKey as NSString: searchBar.text!] CLGeocoder().geocodeAddressDictionary(addrDict,error) -> Void in print(placemarks) })
我认为通过将搜索字词限制在城市名称,我会得到正确的结果.不幸的是,我得到完全一样的行为!
那么我意识到我不仅遇到城市名称等于国名的问题,
搜索“东京” – EPIC FAIL
locality: nil name: Optional("Tokyo") country: Optional("Japan") formatted address: Optional([CountryCode: JP,Name: Tokyo,State: Tokyo,FormattedAddressLines: ( Tokyo,Japan ),Country: Japan])
结论
CLGeocoder不仅可以省略结果(就像“意大利”一样),但也可以告诉我,一个地方实际上没有地方,我相信上一次我查了一幅地图,东京还是一个市!).
有谁知道如何解决这些问题?
解决方法
令人伤心的是,我完全理解你的挫折感,因为我一直在那里做到这一点.问题是地理编码数据库并不明显,而苹果并不是领先这个领域的公司.在这里,您可以看到当Geocoder被介绍说there are still countries that are not supported或刚刚部分支持时的技术说明.
所以我对你的建议是,如果你想获得最好的结果(尽管仍然没有防故障),切换到Google Geolocation.对于相当大量的请求,它是免费的,之后它花费一些非常小的数量.所有从我经历的基本搜索的成功率是99%左右,如果您提供更多的信息,它只会变得更好. API选项也非常广泛.
以下是地理编码和反向地理编码开发人员文档的链接:
https://developers.google.com/maps/documentation/geocoding/intro
https://developers.google.com/maps/documentation/javascript/examples/geocoding-reverse
希望它至少有一点帮助.
编辑:写完之后,我做了一些研究,似乎我不是make this claim的唯一人(也包括相同的不支持的链接).