This is what happens when I try to zoom out. this was not happening on ios9 and honestly I'm not sure what to look for. the overlay is an MKGeodesicPolyline which i add to the mapview like so self.mapview.add(polylineOverlay).
Asked
Active
Viewed 130 times
3
-
did you find a solution to this? – anders Feb 17 '17 at 20:14
-
nope, still happening (also in the simulator) – Massimo Feb 17 '17 at 21:27
-
I was experiencing this issue too, but only when adding an MKOverlay onto the MapView. I moved my `mapview.add()` code into `viewDidAppear` which fixed it. – Tom Hall May 20 '17 at 07:59
-
yeah, my situation is a bit different because I want to keep updating the overlays on the mapView and I'm not sure wether I should delete the other overlays before adding the new one (the new one will be the whole updated overlay) or keep the previous ones there and hoping that MapKit will do the right thing. I'm seeing this issue anyway though – Massimo Jun 08 '17 at 01:54