包含街道建议名称的列表
在 iOS 环境中,是否有可能以某种方式返回街道建议名称列表,例如地图应用程序?例如,我输入“Central”,它会返回名称中包含“Central”一词的街道列表。
Is it possible, in an iOS context, to somehow return a list of street's suggestion names, like the Maps application? For instance, I type "Central" and it returns a list of streets that contain the word "Central" in their names.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
![扫码二维码加入Web技术交流群](/public/img/jiaqun_03.jpg)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
iOS 中没有任何内置功能可以做到这一点。我建议将 Google Geocoding API 与
UISearchDisplayController
结合使用。 http://code.google.com/apis/maps/documentation/geocoding/There is nothing built into iOS that will do that. I would suggest using the Google Geocoding API with
UISearchDisplayController
. http://code.google.com/apis/maps/documentation/geocoding/