Hi, I'd like to use the AGSMapView method identifyLayers() to determine what features are at a user-tapped map location. However, I noticed that only visible layers (whose isVisible property are set to true) return features.
Is this the expected behavior? In my case, I'd like to use identifyLayers() to get features from "invisible" layers (whose isVisible property are set to false), but the closest I can get to this behavior is to set all layers visible, and reset the layer renderers and disable layer labels. Unfortunately, resetting the layer renderers and disabling the layer labels doesn't hide the intrinsic layer features, so the layers are visible.
Is there a way to use identifyLayers() to get features for map layers that aren't visible?