朋友您好我正在制作出租车预订应用程序。所以,如果我的骑手想要查看他附近的司机列表。如何在谷歌地图中完成? 我在这里使用这些代码。
@Override
public void onLocationChanged(Location location) {
mlastLocation = location;
Location target = new Location("target");
for(ServiceData data:list) {
target.setLatitude(data.location.latitude);
target.setLongitude(data.location.longitude);
if(location.distanceTo(target) < _METER_) {
Toast.makeText(getApplicationContext(), "driver found", Toast.LENGTH_LONG).show();
}
else {
Toast.makeText(getApplicationContext(), "driver is too far.", Toast.LENGTH_LONG).show();
}
}
sendlocationToserver();
}
通过使用这些代码我只能找到一个驱动程序,但如果我想要一个驱动程序列表任何想法?如何做到这一点?