I am able to get each individual tile from a tile cache, with each request by intercepting the "TileLoading" event. That works fine.But, how do i then stitch them all back together for the map?I just found this documentation on doing what I am doing:http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.ArcGISTiledMapServiceLayer~GetTileUrl.htmlbut now don't know how to put everything back together so that i can load the map with my tiles. this is how i am getting the tiles. when i am watching fiddler, i see an initial connection to the map service, but then see no more communication.is assigning the e.ImageSource all i really need to do? private void ArcGISTiledMapServiceLayer_TileLoading(object sender, ESRI.ArcGIS.Client.TiledLayer.TileLoadEventArgs e) { string sBaseLocation = @D:\Cache\Test\_alllayers; ImageSourceConverter isc = new ImageSourceConverter(); e.ImageSource = (ImageSource) isc.ConvertFromString(sBaseLocation + "\\L" + e.Level.ToString().PadLeft(2, '0') + "\\R" + e.Row.ToString("x").PadLeft(8, '0') + "\\C" + e.Column.ToString("x").PadLeft(8, '0') + ".png"); }any help would be greatly appreciated.thanksdavid
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.