如何在 iPhone 中保存 Google 地图上的图像
我有地图应用程序,其中有一个按钮。单击该按钮后,用户可以通过 iPhone 捕获图像,并且用户捕获的图像应保存在地图上他捕获图像的特定位置。
I have map application in which I have a button. On clicking that button the user can capture image through iPhone and the image that is captured by the user should be save on the map at the particular location where he has captured the image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您知道要在地图上显示图像的位置,那么您有两种方法可以在地图上显示特定图像。
1. 您可以将图像添加为地图上的叠加层。
以下链接包含有问题的代码:代码链接
2. 添加图像作为注释。 (http://blog.asolutions. com/2010/09/building-custom-map-annotation-callouts-part-1/)
If you know where you want to display image on map then you have two ways to display particular image on map.
1. You can add image as a overlay on map.
Below link contains code in question: code link
2. Add image as a annoation. (http://blog.asolutions.com/2010/09/building-custom-map-annotation-callouts-part-1/)
使用核心位置获取用户当前位置,以便您可以获取他正在捕获图像的位置,然后在地图上显示该位置。
Use core location to get the user current location, so that you can get his location where he is capturing image and then show that location on map.
通过“保存在地图上”,我假设您想在拍摄照片的位置显示一个掉落的图钉 - 为此,您需要:
稍加谷歌搜索就能找到使用这些类的教程。 这个 看起来不错。
By "save on the map" I'm assuming you want to show a dropped pin on the spot where the photo was taken- to do this, you'll need to:
A bit of Googling will net you tutorials using these classes. This one looks decent.