Zooming and animating to point mapview android
问题 So in my current application, I want to zoom to a lat/long point, but also use the animateTo (or equivalent) to make sure the screen is properly centered. Currently I'm just doing something like this: _mapController.animateTo(new GeoPoint(googleLat, googleLng)); // Smooth zoom handler int zoomLevel = _mapView.getZoomLevel(); int targetZoomLevel = AppConstants.MAP_ZOOM_LEVEL_SWITCH; long delay = 0; while (zoomLevel++ < targetZoomLevel) { handler.postDelayed(new Runnable() { @Override public