swift remove map overlays

别说谁变了你拦得住时间么 提交于 2019-12-10 17:22:57

问题


I am trying to remove overlays from map.

func removeMapOverlay() {

    var removeOverlays : [AnyObject]! = self.mapView.overlays
    // Above line throws runtime exception

    self.mapView.removeOverlays(removeOverlays)
}

self.mapView.overlays are type of AnyObject array. var overlays: [AnyObject]! { get }.

So initially I wrote

var removeOverlays = self.mapView.overlays

It throws EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0) exception at this line on runtime.

So I did type casting for [AnyObject] I don't know it is correct or not but it still gives me same exception at runtime.

Edit:

What I did for Objective C code was:

- (void) removeMapOverlay {
    [self.mapView removeOverlays:[self.mapView overlays]];

    NSMutableArray *tempArray = [NSMutableArray arrayWithArray:[self.mapView annotations]];
    if ([tempArray containsObject:[MKUserLocation class]]) {
        [tempArray removeObject:[MKUserLocation class]];
    }

    NSArray *annotationArray = [NSArray arrayWithArray:tempArray];
    tempArray = nil;
    [self.mapView removeAnnotations:annotationArray];
}

I tried to create similar method in Swift. But it throws an exception like I explain above.


回答1:


I've just done this:

let overlays = mapView.overlays
mapView.removeOverlays(overlays)

and it seems to work. Why do you define your overlays as a static variable?

EDIT:

This is what we've done to be able to use the global contains function to search a swift array and check if the element we're looking for exists inside the array or not. In this case we were searching for CLLocationCoordinate2D inside an array.

public func == (lhs: CLLocationCoordinate2D, rhs: CLLocationCoordinate2D) -> Bool {
return lhs.longitude == rhs.longitude && lhs.latitude == rhs.latitude
}

public func == (lhs: MKMapPoint, rhs: MKMapPoint) -> Bool {
    return lhs.x == rhs.x && lhs.y == rhs.y
}

extension CLLocationCoordinate2D: Equatable{

}

//This is needed to be Equatable to use the global contains function
extension MKMapPoint: Equatable {

}



回答2:


This worked for me:

self.mapView.overlays.forEach {
    if !($0 is MKUserLocation) {
        self.mapView.removeOverlay($0)
    }
}



回答3:


For google maps iOS mapping (Swift 3 and latest iOS SDK), Documentation, you will set the overlay as nil like so

overlay.map = nil


来源:https://stackoverflow.com/questions/27272477/swift-remove-map-overlays

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!