The AGS for Silverlight api help states that the first tiled map service layer will determine the scale levels at which map uses when SnapToLevels="True".
My first layer (ArcGISTiledMapServiceLayer) is my base imagery which is not particularly high resolution, but I need to be able to zoom in even further for my other ArcGISDynamicMapServiceLayers to show high detail. Hopefully the base layer will just be interpolated by the client at these zoomed in levels.
I dont wish to cache my base layer with really high resolution tiles, since it will use a lot of disk space for not much benefit.
How do I manually (in xaml or in c# code) configure the map control to use specific scale levels?
thanks