I want to display a large image, about 800 x 800 pixels. I would like to be able to pan it in all four directions by dragging it with my finger. I would also like to be able to zoom in and out. I need to know the panorama values and the zoom values because I have to draw small text lines in certain places from the image.
For example, if the panorama is 100 pixels to the right, I need to know that I can add this offset to all my elements.
I wonder what a good way to do this. Do I have to implement it myself in the paint method in the View I view? Is there any other standard method? Essentially, it looks like a Google map view, only one big tile, but I need to draw my contacts on it using pan and zoom,
thank
source
share