You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Zoom.it uses a "combo" viewer which seamlessly and automatically uses Silverlight if the user has it installed and is on a supported browser, otherwise falls back to Seadragon Ajax. This leads to an awesome experience because Silverlight Deep Zoom is really so fast and buttery smooth; it would be great to add the same support into Seadragon Ajax directly. Unfortunately, we never publicly released the source code to this combo viewer.
The way we implemented it though was a pain for rapid iteration and development: the Silverlight viewer was an entirely duplicate codebase, a Silverlight application written in XAML and C#, so any changes/improvements we wanted to make to the viewing experience had to be made to both codebases. This included e.g. pan/zoom constraints, buttons, and scriptable APIs. It also meant we couldn't easily add custom interactivity, e.g. overlays or highlights.
So perhaps we can try another way: use Silverlight's JavaScript API to construct inline XAML on the fly. Excanvas, for example, has a Silverlight version that does this. This way has major limitations, but the great news for us is that Deep Zoom (specifically, MultiScaleImage) is included, so we can still get a smooth experience. You can't have custom tile sources though (no C#), so this could only work for DZIs. We'd also need to be in windowless mode to support all of our HTML/JS code for interaction, overlays, controls, etc., so there might be visual tearing.
Overall though, this has the potential to lead to a much smoother experience across browsers -- esp. IE6-8 -- and the benefits very likely outweigh the costs, so we should look into this.
The text was updated successfully, but these errors were encountered:
Zoom.it uses a "combo" viewer which seamlessly and automatically uses Silverlight if the user has it installed and is on a supported browser, otherwise falls back to Seadragon Ajax. This leads to an awesome experience because Silverlight Deep Zoom is really so fast and buttery smooth; it would be great to add the same support into Seadragon Ajax directly. Unfortunately, we never publicly released the source code to this combo viewer.
The way we implemented it though was a pain for rapid iteration and development: the Silverlight viewer was an entirely duplicate codebase, a Silverlight application written in XAML and C#, so any changes/improvements we wanted to make to the viewing experience had to be made to both codebases. This included e.g. pan/zoom constraints, buttons, and scriptable APIs. It also meant we couldn't easily add custom interactivity, e.g. overlays or highlights.
So perhaps we can try another way: use Silverlight's JavaScript API to construct inline XAML on the fly. Excanvas, for example, has a Silverlight version that does this. This way has major limitations, but the great news for us is that Deep Zoom (specifically,
MultiScaleImage
) is included, so we can still get a smooth experience. You can't have custom tile sources though (no C#), so this could only work for DZIs. We'd also need to be in windowless mode to support all of our HTML/JS code for interaction, overlays, controls, etc., so there might be visual tearing.Overall though, this has the potential to lead to a much smoother experience across browsers -- esp. IE6-8 -- and the benefits very likely outweigh the costs, so we should look into this.
The text was updated successfully, but these errors were encountered: