从地图视图中选择位置
我正在考虑一个应用程序,用户可以在 iPhone 应用程序上选择一个位置。我用谷歌搜索了一下,没有找到任何有用的东西。
我的问题是,是否可以让用户使用 MapKit/CLLocation 从 iPhone 应用程序中选择位置?如果是,请帮助我我应该从哪里开始。
谢谢
I was thinking of an application where user could select a location on an iphone app. I have googled it and didn't find anything useful.
My question is, is it possible to let the user select a location from an iphone app using MapKit/CLLocation? If yes, please help me where should i start.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以向地图添加长按手势识别器:
在句柄长按方法中获取 CLLocationColute2D:
You can add a long press gesture recognizer to the map:
In the handle long press method get the CLLocationCordinate2D:
看看这个答案。答案不仅告诉你如何获取坐标,还告诉你如何在地图上放置图钉(注释)。
Take a look at this SO answer. The answer tells you not only how to get the coordinate, but also how to put a pin (annotation) on the map.