iPhone MapKit:通过触摸 MKMapView 手动选择位置(坐标)
我想为用户提供(手动)选择纬度的可能性。又长。通过触摸 MKMapView
进行坐标。我怎样才能做到这一点?
我已经看到 MKMapView
委托提供了方法 convertPoint:toCooperativeFromView:
。我认为,这可能是一个好的开始,但我不知道如何通过触摸动作创建一个点。
我将不胜感激任何帮助。谢谢。
I would like to offer the user the possibility to (manually) select lat. and long. coordinates by touching a MKMapView
. How can I achieve that?
I've seen that the MKMapView
delegate offers the method convertPoint:toCoordinateFromView:
. I think, that could be a good starting, but I don't know how to create a point from a touch action.
I would appreciate any help. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
vwMap
是MKMapview
对象的名称:vwMap
is the name ofMKMapview
object:一个
UITouch
对象(请参阅 此处)有 API:然后使用您确定的
MKMapView
API。A
UITouch
object (see here) has the API:Then use the
MKMapView
API you identified.