I am trying to render a pipe network using the ArcGIS Silverlight tools. We are using MVVM (Caliburn.Micro) and have configured the ESRI Map control by binding the layers collection to a view-model:<esri:Map x:Name="MyMap" Layers="{Binding Layers}" ></ esri:Map>
In the view-model we build the layers collection in code. This has worked fine and we are able to render the pipe network, valves etc in different feature layers. We have to build the layers in code and bind to the view so we can access a feature layer that???s in selection only mode and pick up user selections.However, I would like to render an ID next to each pipe. We have created an annotation layer in our map server service but the annotations only render as red rectangles next to the pipes.I???m completely stumped. Does anyone have any suggestions as to how I can display annotation layers correctly?