在mapkit中搜索注释
我正在尝试将搜索栏添加到当前正在执行的地图套件中。
搜索栏将能够在表格视图中搜索不同的位置名称(地图上的注释)。
当用户单击某个单元格时,它将引导他们到地图上的特定注释。
关于如何做到这一点有什么想法吗?我用谷歌搜索答案,但大多数教程教我们如何通过 sqlite 等进行搜索。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@funatsg我建议你从你的
UITableView
搜索结果中获取特定index
的数据,并将该数据带到你的mapView
,然后开始搜索对于地图中的特定位置(例如:-通过将该字符串提供给谷歌地图),您将获得特定位置。我想向您推荐一个与您的情况非常相似的链接......看看地图如何从
UITextField
搜索文本数据..尝试这个链接希望它会帮助你并解决你的问题!!!
@funatsg i suggest u to take the data from a a particular
index
from youUITableView
search result and take that data to yourmapView
and then start searching for that paticular location in a map (eg:-by giving that string to google map) and you will get the particular location.I would like to suggest a link to you which is some how similar to your condition.....see how the map is searching the data of the text from
UITextField
..try this linkHope it will help u and solve your problem!!!