I have a WinformsMap control on my form. I've built a custom FeatureLayer class and want to add an instance of that feature layer to the map.
The code example uses the MapEngine class that supports the following code:
// Add the new layers to the MapEngine
mapEngine.StaticLayers.Add("WorldLayer", worldLayer);
mapEngine.StaticLayers.Add("CitiesLayer", citiesLayer);
But the WinformsMap doesn't have a StaticLayers property. So how do you add a feature layer to a WinformsMap Control?
Thanks.
bob