Iphone Mapkit:在地图上显示图像
我花了一晚上的时间试图在地图上获取一个简单的 UIImage。我看到了 2 个 Apple 示例和 github 上的一个,但它们似乎过于复杂(其中一个使用 Three20 网络),并且三分之二在 xcode 4 中不起作用。还有一个使用 bin 文件作为其源。
有没有人有一个放置在地图上的单个图像的简单演示。我一直在研究 MKOverlay 和 MKOverlayView。
I spent the evening trying to get a simple UIImage on a map. I seen 2 Apple samples and one on github but they seem overly complex (one uses the Three20 network) and 2 out of 3 dont work in xcode 4. Also one uses a bin file as its source.
Has anyone got a simple demo of a single image placed on a map. I been looking at MKOverlay and MKOverlayView.
I been trying to follow
iPhone MapKit: Custom MKPolygonView with image draws upside down
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将使用传统的 MKAnnotationView 并设置 image 属性。如果在缩放 mapView 时不应缩放图像,则这是正确的方法。
I'd use a traditional
MKAnnotationView
and set theimage
property. This is the right approach if the image should not be scaled when the mapView is scaled.