我正在处理一个应用程序,该应用程序要求用户可以像在谷歌地图中一样下载地图,但是从这个应用程序,然后收取这些地图进行离线导航。
答案 0 :(得分:0)
我目前正在使用setOnMyLocationChangeListener,我知道它已被弃用,必须使用FusedLocationProviderApi,但我不知道如何
mMap.setOnMyLocationChangeListener(new GoogleMap.OnMyLocationChangeListener() {
@Override
public void onMyLocationChange(Location location) {
CameraUpdate cu = CameraUpdateFactory.newLatLngZoom(new LatLng(location.getLatitude(), location.getLongitude()), 18);
mMap.animateCamera(cu);
}
});