The feature returned in the 'IdentifyResult' of an identify task contains an attributes dictionary.So in your case, you should get you ID, location, condition,.... by code like forreach( IdentifyResult result in results) { Graphic feature = result.Feature; foreach(var attribute in feature.Attributes) { //attribute.Key and attribute.Value available here } }
forreach( IdentifyResult result in results) { Graphic feature = result.Feature; foreach(var attribute in feature.Attributes) { //attribute.Key and attribute.Value available here } }
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.