Using AGS SL API 3.1I'm at a loss on this one.My map has a TileMapServiceLayer, couple of Dynamic Layers and a couple of FeatureLayers.The FeatureLayers URL sources are set before the map loadsAll layers are from the same server and have the same spatial reference.I set the URLs of the FeatureLayers via a resource, and load Dynamic layers when the app starts.I manually set my extent to be safe.<esri:Map x:Name="Map" Background="{StaticResource BaseColor}">
<esri:Map.Extent>
<esri:Envelope XMin="number" YMin="number" XMax="number" YMax="number" >
<esri:Envelope.SpatialReference>
<esri:SpatialReference WKID="102696"/>
</esri:Envelope.SpatialReference>
</esri:Envelope>
</esri:Map.Extent>
...
Even if I just slightly pan the map, I get the attached error.[ATTACH=CONFIG]23734[/ATTACH]I'm lost on how to handle this. It says to clear the map layers. What?If I could even figure out where to handle the error, I'd attempt to catch it and see if I could ignore it.I stripped everything down to just a single TiledMapServiceLayer and the error still persists.Any help would be greatly appreciated, thanks.