iPhone自定义引脚位置问题
我有一个使用 iPhone 地图套件的应用程序。它显示了一组标准引脚。 现在我切换到引脚的自定义图像(使用 MKMapViewDelegate)
问题是自定义引脚未居中 - 自定义引脚指向原始位置附近。
问题是 iPhone 如何使用自定义 PIN 码。例如:我们有一个 50x50 像素的图钉图像。我们有全局坐标(经度、纬度):XY
iPhone 如何将图像居中?
谢谢
I have an application that uses iphone map kit. It shows set of standard pins.
Now I switch to custom images for pins (using MKMapViewDelegate)
The problem is that custom pins are not centered right - custom pin pointing to a location near original.
The question is how iphone works with custom pin. For example: let's have a image for pin 50x50 pixels. And we have global coordinate (long, lat): XY
How will iphone center image?
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您将自定义图像分配给图像属性。显示注释时,图像将以目标地图坐标为中心显示。如果不希望图像以地图坐标为中心,可以使用 centerOffset 属性在任意方向水平和垂直移动中心点。
因此自定义图像仅显示在目标坐标的中心。
来源:Apple 类参考MKMapView
If you assign your custom image to the image property. When the annotation is displayed, the image is displayed centered over the target map coordinate. If you do not want the image to be centered on the map coordinate, you can use the centerOffset property to move the center point horizontally and vertically in any direction.
So the custom image is displayed in the center of your targeted coordinates only.
Source: apple class reference for MKMapView
解决方案是在mapView的委托中设置中心偏移,而不是在注释视图本身中设置中心偏移:
The solution is to set center offset in the delegate of the mapView, and not in the annotation view it self: