0
我如何讓我的應用程序動畫到我目前的位置?我的部分代碼如下所示:Android:我如何動畫到我目前的位置
compass.enableMyLocation();
lm = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 20000, 0, this);
我知道,我必須使用animateTo方法。但我怎樣才能結合我的當前位置代碼和animateTo?
controller.animateTo(???);
controller.setZoom(16);