Hello all, could anybody tell me how to zoom in/out images
and lines?
I want to create a application like google maps or mapquest,
find the shortest path between two points in the image, then draw
the path in the image,
After drawing the shortest path, user need to zoom in/out the
direction map,
so I need to zoom in/out the .jpg image, from my research, seems that
I can use AffineTransform to zoom in/out the image, but how can I
redraw the
path(lines) in the picture?
Also, after zoom in, the user also need to see different parts of the
whole picture,
for example, use can click up/down/left/right button to see different
parts of the map?
Thank you for any ideas or example code.
Michael Rauscher - 23 Feb 2007 23:06 GMT
> Hello all, could anybody tell me how to zoom in/out images
> and lines?
see java.awt.Graphics2D#scale or java.awt.Graphics2D#setTransform
respectively.
Bye
Michael
sakcee@gmail.com - 24 Feb 2007 02:05 GMT
Get a Phd from Stanford with 4.0 GPA, thats how google does it
On Feb 23, 11:27 am, "au.da...@gmail.com" <au.da...@gmail.com> wrote:
> Hello all, could anybody tell me how to zoom in/out images
> and lines?
[quoted text clipped - 16 lines]
>
> Thank you for any ideas or example code.