I understand that. I assumed that if there was a javascript library that it would also require a server side component much like extjs does for paging tables.
Main Topics
Browse All TopicsI just implemented a basic Google Maps mashup and was impressed at how easy it was to do.
However, I was wondering if there were Javascript libraries available which would provide for panning over an image in the same way that one can pan over a map in Google Maps.
For instance, as a thought experiment imagine a huge family tree involving millions of people which, if viewed all at once, would be a 100000px by 100000px image. How would I implement a viewer which would show me a subset of that information? Obviously I'd need some sort of server side app which responded to requests from the interface for particular sections of the image. But what about the client side?
Are there Javascript libraries which have widgets which could be used to build something like that?
Keep in mind that I don't just want panning. I want to be able to click icons on the image and see popup information and other types of dynamic behavior beyond just panning around an image.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hm. I've never heard of any libraries which already do this google-maps style panning. There are however a number of library which already implement JS dragging as well as ajax such as:
http://jquery.com/
http://script.aculo.us/
http://qooxdoo.org
And many more.
So you may be able to combine some of the pre-written dragging libraries to do what you want. You would have a container within which the current tile is being dragged. As it is dragged, the tiles around it are moving with it and new ones are coming in as you pan over previously invisible sections of the family tree.
The container I assume would have kind of a limited peep-hole view of the image which- when the edge of the tile approaches the edge of the container, adjacent tiles are loaded in.
There are several JavaScript libraries providing similar functionality like Google Maps.
For example: http://www.openlayers.org/
You can use my MapTiler open-source application (http://www.maptiler.org) to create the tiles from your input image and you will receive a running OpenLayers viewer directly - just choose the "raster" profile in the first step of the wizard.
Business Accounts
Answer for Membership
by: sherriwebPosted on 2009-03-20 at 07:13:04ID: 23939442
Google Maps is not panning over a humongous image. It is feeding you tiles (like a puzzle) with AJAX it loads the tiles next to the current one as you drag the mouse around the screen.