Hi,How can I access the properties of a layer rendering of a LocalMapService?I try get the next code to obtein the layers detailsLayer l = Map.Layers[0]
if (l is ArcGISLocalDynamicMapServiceLayer)
{
ArcGISLocalDynamicMapServiceLayer localDyn = l as ArcGISLocalDynamicMapServiceLayer;
foreach (LayerDetails ld in localDyn.Service.MapLayers)
{
...
}
}
The LayerDetails has not Symbol property to obtein the renderer of the layer. The LayerDetails has a Url with the local service. It can be read and get the Renderer but thisis not very dynamic. Is there any way to get the layer renderer? Jesús Villajos NovilloSoftware Engineer.th