Hello,
I'm displaying a simple map with arcGISImagery BasemapStyle like this :
class SimpleMapViewController: UIViewController {
@IBOutlet weak var mapView: AGSMapView!
override func viewDidLoad() {
super.viewDidLoad()
mapView.map = AGSMap(basemapStyle: .arcGISImagery)
}
}The problem is when I zoom the dashed lines between regions are making disturbing animations (screen record attached). Is there a fix or a way to prevent that ?
Thank you !