在 iOS 中使用街道地址
无论如何,是否可以获取街道地址(“1234 Test Ave. New York, NY)并能够为地图创建注释?基本上,我的应用程序当前标记了用户位置,我想制作事件的位置(按钮将地图视图推到屏幕上)我想获取该事件的坐标,以便我可以在屏幕上显示的地图视图上放置注释
有什么想法吗?
Is there anyway to take in a Street Address ("1234 Test Ave. New York, NY) and be able to create an annotation for a map? Basically my app current marks the users location and I want to make the location of an event (A button pushes the mapView on screen). I want to obtain the coordinates of that event so that I can place an annotation on the mapView that is being displayed on screen.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要将 GPS 坐标转换为地址,您可以使用 MKReverseGeocoder,要将地址转换为 GPS 坐标,您需要使用第 3 方地理编码工具或自己为某些服务编写包装器。我为我的一个应用程序编写了一个应用程序并将其开源。 在 GitHub 上查看
To translate GPS coordinates into addresses you can use MKReverseGeocoder, to translate addresses into GPS coordinates you need to use a 3rd party geocoding tool or write a wrapper for some service yourself. I wrote one for one of my apps and open sourced it. Check it out on GitHub