private var scaleKvoToken:NSKeyValueObservation?
scaleKvoToken = agsMapView.observe(\.visibleArea) { mapViewThatChanged, _ in
print("Map Location changed to \(mapViewThatChanged.visibleArea?.extent.center.toCLLocationCoordinate2D())")
}
In the above code, I can get center location of the map continuously without any map scrolling so there is any possible reason to solve this problem...??