Hello,
I am working on clustering some of my data in order to give a simplified view of the map. The way I have done it is in the feature source GetFeaturesForDrawing method, I get all the my features, then execute a function that clusters them. This works fine and everything displays fine. What I want to be able to do is store all the features that make up the clustered feature so that at a later time the user can request more information (Identify) and see details about each of the individual features that make up that cluster. This would be easy except for the fact that Feature is a sealed class. I have two questions:
1) What is the best way to go about doing this?
2) I was wondering if you could expand upon your reasoning for making Feature a sealed class?
Thank you for your help,
Ryan