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 } }
Membros conectados podem postar, seguir atualizações e mais. Novo aqui? Registre uma conta gratuita.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.