Hello! How do I get the attribute table of a scene object when I click on it? ArcGIS Runtime SDK for Android 100.4.1
Solved! Go to Solution.
I'm guessing here that you are performing an Identify on the SceneView. Something like in this sample Identify Layers—ArcGIS Runtime SDK for Android | ArcGIS for Developers ? Note that identify operations are the same for MapView and SceneView.
Having done the identify you will have a list of GeoElements. Depending on what data you are working with, it is possible this may have come from a feature service. If this is the case then the GeoElement will down-cast to a Feature.
A feature will contain the geometry and attributes.
I'm guessing here that you are performing an Identify on the SceneView. Something like in this sample Identify Layers—ArcGIS Runtime SDK for Android | ArcGIS for Developers ? Note that identify operations are the same for MapView and SceneView.
Having done the identify you will have a list of GeoElements. Depending on what data you are working with, it is possible this may have come from a feature service. If this is the case then the GeoElement will down-cast to a Feature.
A feature will contain the geometry and attributes.
Is it possible to get only certain fields from the attribute table?
Thanks so much. It works!