我怎样才能获得当前的位置?

时间:2018-06-18 16:40:54

标签: android

我正在开发一款计算2点之间距离的应用,但我现在不知道如何获得当前位置。我正在使用谷歌地图活动。

非常感谢任何帮助。

代码:

LocationManager service = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
Criteria criteria = new Criteria(); 
String provider = service.getBestProvider(criteria, false); service.requestLocationUpdates(provider,1000,0,locationListenerGPS); Location location = service.getLastKnownLocation(provider); 
LatLng userLocation = new LatLng(location.getLatitude(),location.getLongitude());

1 个答案:

答案 0 :(得分:0)

使用此文档。 LocationManager不是最好的方法。使用GooglePlayServices。

在官方docs

中逐步查看