我正在开发一款计算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());