I'm trying to use MultiScaleImage in a WP8 app with local source. I've composed the image structure using Deep Zoom Composer and added the files to the app project.
<MultiScaleImage x:Name="ImageMap" Source="Map/dzc_output.xml" />
The above doesn't work, no errors, just doesn't display anything. I also tried setting the source from code, but no success.
ImageMap.Source = new DeepZoomImageTileSource()
{
UriSource = new Uri("file:///Map/dzc_output.xml")
};
I did not try with remote source - for purposes of this application I need strictly local source. Sadly, the documentation is very poor on explaining how this (or if) can be done in Windows Phone. Has anyone attempted this before?