Doe anybody know where i can get a sample silvelight mediaelement cloud similar to mojaveexperiment.com?
A:
MojaveExperiment used Vertigo BigPicture
The company site is here
Graeme Bradbury
2009-03-05 13:55:18
Hi Graeme,Thanks for the response. I know it was created by vertigo by the source for BigPicture is not public yet. I'm wonderring if there's a sample app that i could look at that mimics the behaviour of BigPicture.Thanks,Keith
Keith Rull
2009-03-05 18:13:57
A:
Answer and source code example here here
and in code:instead of
Uri collectionUri;
if (Uri.TryCreate(App.Current.Host.Source, "/Collection/items.bin", out collectionUri))
image.Source = collectionUri;
have
Uri collectionUri;
if (Uri.TryCreate(App.Current.Host.Source, "/Collection/items.bin", out collectionUri))
msi.Source = new DeepZoomImageTileSource(collectionUri);
Found a thread that related to same question here
TStamper
2009-03-05 15:44:02
@TStamper: The link that you sent is about reading data in the Azure cloud. I'm talking about building a MediaElement cloud similar to what is on the mojaveexperiment.com site. Thanks.
Keith Rull
2009-03-05 18:15:11