How to get level of detail or zoom level in ArcGIS Map in iOS ?

611
0
10-22-2019 12:22 AM
KishanSuthar
New Contributor

In Application, I want to get specific data over the server base on zoom level or Level of detail. I have use 

NSKeyValueObservation for detecting zoom in-out.

private var scaleKvoToken:NSKeyValueObservation?

scaleKvoToken = agsMapView.observe(\.mapScale) { mapViewThatChanged, _ in

            print("Map scale changed to \(mapViewThatChanged.mapScale)")

 }

above code in I get map scale so there is any formula to convert zoom level the same on iOS, Android and Web.

In this link Web map zoom levels updated show web map zoom level.

0 Kudos
0 Replies