requestLocationUpdates 最小距离单位
requestLocationUpdates MinDistance Unit
我想在用户每次更改位置时都更新他的位置。我使用了 requestLocationUpdates,其中有最小距离。但我的疑问是这个距离单位是多少?
如果我想在用户移动 2 公里时更新,我应该给出最小距离的数字是多少?
假设你的意思是 LocationManager's requestLocationUpdates,Javadoc 说:
minDistance
, float: minimum distance between location updates, in meters
所以 2Km 就是 2000。
我想在用户每次更改位置时都更新他的位置。我使用了 requestLocationUpdates,其中有最小距离。但我的疑问是这个距离单位是多少?
如果我想在用户移动 2 公里时更新,我应该给出最小距离的数字是多少?
假设你的意思是 LocationManager's requestLocationUpdates,Javadoc 说:
minDistance
, float: minimum distance between location updates, in meters
所以 2Km 就是 2000。