ArcGIS Runtime SDK for iOS
100.15
|
Results of an identify layer operation on an AGSGeoView
object.
Instances of this class represent the result for an individual layer returned by the identify operation on an AGSGeoView
object.
AGSGeoView::identifyLayersAtScreenPoint:tolerance:completion:
to identify features from all the map's operational layers. AGSGeoView::identifyLayer:screenPoint:tolerance:completion:
to identify features from a specific layer. Properties | |
NSError * | error |
NSArray< id< AGSGeoElement > > * | geoElements |
id< AGSLayerContent > | layerContent |
NSArray< AGSPopup * > * | popups |
NSArray< AGSIdentifyLayerResult * > * | sublayerResults |
BOOL | transferLimitExceeded |
|
readnonatomicstrong |
Error encountered during identify, if any.
|
readnonatomiccopy |
The identifed geo-elements for the layer represented by layerContent
. Might be empty if the layer is composed of sub layers in which case sublayerResults
will be populated with results from sub layers. Only valid when the identify was called with the returnPopupsOnly
parameter set to NO
.
|
readnonatomicstrong |
The layer to which the identified geoElements
property belongs to.
|
readnonatomiccopy |
The identifed popups for the layer represented by layerContent
. Might be empty if the layer is composed of sub layers in which case sublayerResults
will be populated with results from sub layers.
|
readnonatomiccopy |
Results for any sublayers of the layer represented by layerContent
. Only applicable if the current layer contains any sub-layers.
|
readnonatomicassign |
Specifies if the transfer limit was exceeded for the identify results.