Has anyone gotten to work the Magnifying Glass with an ESRI.ArcGIS.Client.Bing.TileLayer?My base map is a ESRI.ArcGIS.Client.Bing.TileLayer and I would like to use the Magnifying Glass on it. The Magnifying Glass is blank (dark) and displays nothing. If I use an "ArcGISTiledMapServiceLayer" it works fine with the URL property set.Since I use an ESRI.ArcGIS.Client.Bing.TileLayer I do not have a URL property, but a Bing Map key and TileLayer properties.I have tried to cast the ESRI.ArcGIS.Client.Bing.TileLayer into an ArcGISTiledMapServiceLayer, but the Magnifying Glass remains blank.Casting code:if (MagnifyingGlass != null) MagnifyingGlass.Layer = MyMap.Layers[0] as ArcGISTiledMapServiceLayer;
Any ideas?Hugo.