如何使我的应用程序动画到我当前的位置?我的部分代码如下所示:
compass.enableMyLocation();
lm = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 20000, 0, this);
我知道,我必须使用 animateTo 方法。但是我怎样才能将我当前的位置代码和 animateTo 结合起来呢?
controller.animateTo(???);
controller.setZoom(16);