自定义 MKPinAnnotation 标注气泡与默认标注气泡类似
我想在 MKMapView 上创建自定义标注气泡。但我想以与默认气泡相同的方式创建标注气泡。那么如何创建一个看起来像这张图片中的注释的视图
(来源:objectgraph.com)
我想要一个自定义视图,如下图中的“停车位置”注释所示。使用自定义宽度、高度等。P
我无法在默认气泡中添加所需的详细信息。这就是为什么我要创建自定义气泡。
I want to create a custom callout bubble on MKMapView. But I want to create the call out bubble in the same manner of default bubble. So how to create a View look like annotaion in this image
(source: objectgraph.com)
I want a custom custom view which look like "Parked Location" annotaion in the following image. With custom width, height etc. P
I am not able to add required details in Default bubble. That's why am creating custom bubble.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我开发了一个自定义标注气泡,它与系统标注气泡几乎相同,但在高度和内容上提供了更大的灵活性。调整外观以满足您的需要应该是相当简单的。请参阅我在异步解决方案博客 例如代码以及实现良好标注替换所需的步骤。
I have developed a custom callout bubble that is nearly identical to the system callout bubble, but gives more flexibility over the height and content. It should be fairly trivial to adjust the appearance to suit your needs. See my post on the Asynchrony Solutions blog for example code and the steps required to implement a good callout replacement.
您需要使用 MKCircle 和 MKCircleView。
You need to use MKCircle and MKCircleView.