Open GoogleCodeExporter opened 9 years ago
Facing exact same problem. :(
Original comment by shahr...@riseuplabs.com
on 15 Aug 2011 at 11:53
what i do to work around this issue is force the view to pan to (0,0) before
applying zoom. like this (pseudo code):
var intendedzoomlevel
override zoom(zfactor){
intendedzoomlevel = zfactor
//wait until the render phase triggered by panTo() is complete
this.addEventListener(IsoEvent.RENDER_COMPLETE, doZoom);
//pan first
panTo(0,0)
}
doZoom(){
removeEventListener(IsoEvent.RENDER_COMPLETE, doZoom);
super.zoom(intendedzoomlevel);
}
Original comment by mas...@masputih.com
on 27 Oct 2011 at 7:12
Original issue reported on code.google.com by
benjamin...@gmail.com
on 5 Aug 2010 at 3:39