I am working on a android app and have implemented this: Image scaling geometry into my app. I am scaling a map which can be scrolled around. The maximum scale is 6 and the minimum is 1. The code I use is:
newCoord[0] = 240 - (240 - FirstCoord[0]) * curMag;
newCoord[1] = 160 - (160 - FirstCoord[1]) * curMag;
NewCoord[] is the new coords for the image, The screen size is 480x320, so the middle is 240, 160. FirstCoord[] is the coord of the map, curMag is the scaler. My image is 2880x1920 so its 6 times the size of the screen.
My problem is that if I zoom in then move around, then zoom out again, it will zoom out with the middle somewhere else other than the middle of whats actually on the screen. I want it to scale out with whatever is the middle of the screen, to still be the middle of the screen when zoomed out.
I can try to provide any more information of needed.
Thanks, Scott