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 } }
サインインしたメンバーは投稿、更新のフォローなどができます。初めてですか?無料アカウントを登録してください。
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.