Hello,
I want to filter displayed features on a map. User choose value from combobox and map should display only features that have column value equal (or contains) to filter value. Shapefile has more than 10k point features. Is there any fast way to filter ShapeFileFeatureLayer dynamically?
Thank you
FIlter ShapeFileFeatureLayer
Hi Marian,
Have you tried to use the APIs like: ExecuteScalar, ExecuteNonQuery, ExecuteQuery?
You can find them like this:
ShapeFileFeatureLayer layer;
layer.FeatureSource.ExecuteQuery("Query Here");
Regards,
Don