如何在没有任何时间分割器android编程的情况下连续请求位置更新

时间:2019-07-11 20:25:15

标签: android google-maps camera location

我正在开发一个用于进行地图导航的应用程序,我想在使用导航功能时像Google地图应用程序一样将地图摄像头连续地移动到更新的位置,但是在我的应用程序中,位置更改后,告诉地图将摄像头移动到新位置运动出现需要一些时间才能改变,请帮忙 我的更新位置的代码

mLocationRequest.interval = ((0 * 1).toLong()) //2.5 minutes
        mLocationRequest.fastestInterval = ((0 * 1).toLong()) //.5 minutes
        mLocationRequest.smallestDisplacement = 0f
        mLocationRequest.priority = LocationRequest.PRIORITY_HIGH_ACCURACY

要移动相机

 map?.moveCamera(
                        CameraUpdateFactory.newLatLngZoom(
                            LatLng(
                                myLocation!!.latitude,
                                myLocation!!.longitude
                            ), DEFAULT_ZOOM.toFloat()
                        )
                    )
                    updateCameraBearing(myLocation!!.bearing)
                }
            }

请提供任何帮助,或向我提供任何导航示例(例如Google地图)

0 个答案:

没有答案