It happened that I have faced a task to create a ZUI (zooming user interface) on HTML Canvas. The examples of such interfaces are Deep Zoom and Microsoft's Seadragon.

I'm trying to find some libraries that will allow me to create ZUI without writing it by myself from scratch (though I have already done it for Mac and iOS).


The key features that library should have:

  1. Have some kind of 'views' as basic elements and arrange them hierarchically
  2. Draw vector graphics, text and images(optional) in views
  3. Zooming up to 200x times
  4. Mouse events that are handled by views (up/down, move, scroll)

Any suggestions (even if they don't fit the above conditions) will be very welcomed, as I have found nothing about ZUI on canvas.

link|improve this question

80% accept rate
feedback

1 Answer

Have you looked at Piccolo2d seems to meet most of your requirements. Have a look at the video from Geneaquilts that shows how they used it for there interface.

link|improve this answer
Thanks for your answer, though it's late to make any decisions now. We have decided to stick with CSS 3.0 transformations and self written library. – GregoryM Oct 24 '11 at 11:04
About your propositions. Piccolo seems to be using Java or .NET applets which are not suitable for UI rendered in web pages on client side. Especially for a wide range of mobile users (iOS, Android, RIM, etc.) – GregoryM Oct 24 '11 at 11:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.