在地图视图上拖动自定义图钉
我已经成功使用 MKAnnotationView 为放置在地图上的图钉创建了一个自定义图像...
我的问题是如何使该自定义图像可在地图上拖动?那么我可以将图像移动到地图的其他部分吗?
I've managed to create a custom image for the pin which is dropped on a map, using MKAnnotationView...
My question is how do I make this custom image draggable on the map? So I can move the image to other parts of the map?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看
MKAnnotationView< /code>
文档。那里有一个名为
draggable
的属性,您还必须实现MKAnnotation
协议setCooperative:
方法来更新注释的位置。不要忘记它仅在 iOS 4.0 及更高版本中受支持。
Have a look at the
MKAnnotationView
docs. There's a property calleddraggable
there, and you have to also implement theMKAnnotation
protocolsetCoordinate:
method to update the position of the annotation.Don't forget that it's only supported in iOS 4.0 and above.
您可以查看本教程: mapkit-annotation-drag -并删除
You can look this tutorial : mapkit-annotation-drag-and-drop-with