Hi,
In the samples provided, the URI points to external map service below.
// Create a Uri that points to the public ESRI ArcGIS Server map service with the 'Identify' operation supported.
System.Uri myUri = new System.Uri("http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Demographics/ESRI_Census_USA/MapServer");
// Create a new Query.IdentifyTask using the ArcGIS Server map service.
Esri.ArcGISRuntime.Tasks.Query.IdentifyTask myIdentifyTask = new Esri.ArcGISRuntime.Tasks.Query.IdentifyTask(myUri);
I am working on offline map that uses runtime geodatabase. How do I use Identify Task for offline map.
Thanks
If you are using FeatureLayers from geodatabase, you execute QueryAsync against your layer with SpatialQueryFilter.
See sample : arcgis-runtime-samples-dotnet/FeatureLayerSelection.xaml.cs at master · Esri/arcgis-runtime-samples-...