我需要做什么:
在标注 View 存在时滚动 map 不应关闭标注 View 。标注 View 也应该随着 map 滚动。
我有什么
- 我的标注 View 是 MGLAnnotationView 的子类
- 在
中呈现- (nullable MGLAnnotationView *)mapViewMGLMapView *)mapView viewForAnnotationid )annotation;
我尝试过但没用的方法
我可以构建框架,但是修改要么不接受,要么我遗漏了一些东西:我已经注释掉了 - (void)deselectAnnotationid )annotation 的内容动画BOOL)动画 在 MapViewController.mm 中。
我已尝试覆盖我的标注 View 的 setAlpha 、setHidden 和 removeFromSuperView 方法。他们都没有被调用。
Best Answer-推荐答案 strong>
有一个bug fix 2016 年 10 月:。我最近还尝试了一个示例项目,其中我对 MGLAnnotationView 进行了子类化。只要您对这两个属性进行了子类化,它现在似乎就可以正常工作了:
var dismissesAutomatically = false
var isAnchoredToAnnotation = true
关于ios - 有没有办法防止标注在 MapboxGL for iOS 中滚动时消失?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/39398733/
|