在给定的纬度和经度处从 MKMapView 生成 UIImage
我有一个使用 MKMapView 来显示地图的应用程序。我还有一个 UITableView,它在每行的左侧显示地图的一个小片段图像。它看起来像这样:
我希望能够在 MKMapView 的左侧生成该图像。尺寸为 40x40。我知道给定的纬度和经度是我想要获取图像的特定位置的中心。我该怎么做?
I have an app that uses MKMapView to display a map. I also have a UITableView in which it displays a small snippet image of the map to the left of each rows. It looks something like this:
I want to be able to generate that image to the left from my MKMapView. The size is 40x40. I know the given latitude and longitude as the center of a particular location where I want to get the image. How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要获取视图的快照:
这是整个视图 - 您需要从中雕刻出您需要的部分。或者也许只是将地图视图集中在您需要的位置上并进行最大缩放。然后,当将整个视图的图片调整为缩略图大小时,可能就足够了。
要将地图图像裁剪到所需位置:
To get a snapshot of a view:
That's for the whole view - you'll need to carve the piece you need out of it. Or maybe just center the map view on the location you need and do the maximum zoom. Then the picture of the whole view, when resized to a thumbnail size, might be just good enough.
To crop the map image to the desired location: