Hello,I believe that we can have the angle of the marker symbol as some dependency property in Silverlight 4 as illustrated in this post http://blogs.esri.com/Dev/blogs/silverlightwpf/.Similarly I want the size of the marker symbol as a dependency property which would change whenever zoom level of the map changes. Basically I want the marker symbol size to be less at zoom out level and it should increase as we are zooming in.How should I proceed for the above given requirement? I am using ArcGIS API for Silverlight/WPF version 2.1 and Silverlight 4 on VS 2010.Following is the code being used for my present marker symbol : <esriSymbols:MarkerSymbol x:Name="MarkerSymbol_EOL">
<esriSymbols:MarkerSymbol.ControlTemplate>
<ControlTemplate>
<Canvas>
<Ellipse Height="12" Width="12" Canvas.Left="-7" Canvas.Top="-7" RenderTransformOrigin="0.5,0.5" x:Name="gradientellipse" Stroke="#C96FE0FD" IsHitTestVisible="False">
<Ellipse.RenderTransform>
<ScaleTransform />
</Ellipse.RenderTransform>
<Ellipse.Fill>
<RadialGradientBrush>
<GradientStop Color="#FF6FE0FD" Offset="0.35"/>
<GradientStop Color="White" Offset="1"/>
</RadialGradientBrush>
</Ellipse.Fill>
</Ellipse>
</Canvas>
</ControlTemplate>
</esriSymbols:MarkerSymbol.ControlTemplate>
</esriSymbols:MarkerSymbol>