iOS- Get identify AGSArcGISVectorTiledLayer

271
0
06-08-2021 10:59 PM
Labels (1)
rajhole
New Contributor

Hi ,

We are adding AGSArcGISVectorTiledLayer on map. When user tap on that layer, we are trying to fetch layer info. I checked all doc from ESRI, didn't get any success.
 
Code sample is-
 
1.Create layer and add into map, which is working fine.
 

var mapView: AGSMapView!

        if let url = URL(string: "working url") {

            let layer = AGSArcGISVectorTiledLayer.init(url: url)

            mapView.map?.operationalLayers.add(layer)

        }

2. To. get layer info -

func geoView(_ geoView: AGSGeoView, didTapAtScreenPoint screenPoint: CGPoint, mapPoint: AGSPoint) {

 

 

}

what need to do ?

Could you please help me with that.

 

Thanks

Raj Hole

0 Kudos
0 Replies