每5秒检索一次位置

时间:2016-09-26 11:09:45

标签: android google-maps firebase

您好我正在创建一个项目。它是关于跟踪司机。司机必须每隔5秒将其位置发送到Firebase。我的问题是乘客每隔5秒钟如何检索司机的位置。

1 个答案:

答案 0 :(得分:1)

简而言之:

LocationRequest locationrequest = LocationRequest.create();
locationrequest.setInterval(5000);   // 5 seconds
LocationClient locationclient = new LocationClient(this, this, this);
locationclient.requestLocationUpdates(locationrequest, this);

https://developer.android.com/training/location/index.html

在此链接中,建议您使用新的Google Play services location APIs。但他们有同样的想法。