I have an application with a dynamic layer (contains about 20 layers). I want to symbolize dynamically one of its layers. I looked at the sample: http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#DynamicLayerThematic that creates a FeatureLayer based on a layer in the dynamic layer. The thing is, that in the legend, the FeatuerLayer legend is added in addition to the legend of the dynamicLayer (as expected). I want to replace the symbolization of the layer in the dynamicLayer.
Is it possible and how? (I guess it's not possible but I ask anyway because the client had ArcIMS before and he is used to this ability).
Does the dynamic legend (in the REST API) can help in any way? (I couldn't figure out exactly what it does).
If it's not possible, is it possible to add group layers to the legend under which all the symbolized feature layers will reside?
The same description for layer applies even on dynamic ones: http://resources.arcgis.com/en/help/silverlight-api/apiref/api_start.htm?ESRI.ArcGIS.Client~ESRI.Arc.... ArcGISDynamicMapServiceLayer with dynamicLayers, will perform the rendering on the server-end and return you an image on-the-fly. FeatureLayer with dynamic source, will still return you the features, their geometry and attributes and apply the renderer on client. I guess it depends where you want the processing to take place, if you need the features available on the client then go with FeatureLayer. BTW, Dominique, great samples! 🙂