如何从我自己的应用程序下载google maps api中的地图?

时间:2017-06-26 12:29:53

标签: android google-maps-api-3

我正在处理一个应用程序,该应用程序要求用户可以像在谷歌地图中一样下载地图,但是从这个应用程序,然后收取这些地图进行离线导航。

1 个答案:

答案 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);
        }
    });