ios – 为MKOverlayView更改MKOverlay的坐标

前端之家收集整理的这篇文章主要介绍了ios – 为MKOverlayView更改MKOverlay的坐标前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在地图上有一个叠加层,我想改变它的坐标.为了无缝地执行此操作,我将在对视图进行更改后调用 setNeedsDisplayInMapRect:方法.

我只是通过更改fillColor来测试它,它工作正常:

overlayView.fillColor = [[UIColor greenColor] colorWithAlphaComponent:0.3];
[overlayView setNeedsDisplayInMapRect:mapView.visibleMapRect];

然而,我似乎碰到了一堵砖墙,试图改变我的叠加视图的中心坐标(这是MKCircleViewMKCircle).有一种方法
MKCircle所遵循的MKAnnotation,称为setCoordinate: – 这似乎是我所需要的.不幸的是,MKCircleView中的circle属性是readonly.此外,MKOverlayView中的覆盖属性也是只读的.

实际上是否有一种方法可以更改叠加层的坐标,而无需删除叠加层视图并添加新的叠加层视图(这会在屏幕上引起非常明显的闪烁).

解决方法

这里发生了同样的问题,所以我正在创建方法集并根据需求调用它.
-(void)removeAllAnnotationFromMapView{
    if ([[self.tmpMapView annotations] count]) {
        [self.tmpMapView removeAnnotations:[self.tmpMapView annotations]];
    }
}
-(void)removeAllOverlays{
    if ([[self.tmpMapView overlays] count]) {
        [self.tmpMapView removeOverlays:[self.tmpMapView overlays]];
    }
}

-(void)removeOverlayWithTag:(int)tagValue{
    for (MKOverlayView *oView in [self.tmpMapView overlays]) {
        if (oView.tag == tagValue) {
            [self.tmpMapView removeOverlay:oView];
        }
    }
}
原文链接:https://www.f2er.com/iOS/331481.html

猜你在找的iOS相关文章