Hello, I have a map application that has multiple tables with information representing a data file. The user is able to show/hide certain features for each file individually. On the back end I am using `FeatureLayer::setFeatureVisible()` to change the visibility of specific features.
I am currently running into an issue where I have no way to check which features have been hidden. There is no matching getter function in the FeatureLayer class and the Feature class has no member for visibility either. Is there any way to check the visibility status of a specific Feature within a FeatureLayer? Is there a better way to toggle the visibility of a specific feature within a layer that can be checked?
The FeatureLayers I am using are loaded from FeatureTables and I need to check the visibility of them after querying the tables so I can set the map viewpoint to the extent of the visible features. I don't care whether the feature is currently being rendered or not in the MapView, just if it is set as visible in the FeatureLayer.