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 } }
Los miembros registrados pueden publicar, seguir actualizaciones y más. ¿Nuevo aquí? Regístrate gratis.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.