Firebase: как сравнивать наборы данных - PullRequest
0 голосов
/ 11 февраля 2019

Я хочу сравнить широту и долготу пользователя, получить расстояние и показать его в обзоре переработчика.

Я думаю, что это будет работать с небольшой модификацией.Помогите мне, пожалуйста.

БД рис

enter image description here

//show distance


    firebaseUser = FirebaseAuth.getInstance().getCurrentUser();
    reference = FirebaseDatabase.getInstance().getReference("Users");

    reference.addValueEventListener(new ValueEventListener() {
        @Override
        public void onDataChange(@NonNull DataSnapshot dataSnapshot) {

            //set locationA's longitude,latitude
            Location locationA = new Location("CurrentUser");

            String longitude =  dataSnapshot.child(firebaseUser.getUid()).child("long").getValue().toString();
            double LongitudeA = Double.parseDouble(longitude);
            String latitude  = dataSnapshot.child(firebaseUser.getUid()).child("lat").getValue().toString();
            double LatitudeA = Double.parseDouble(latitude);

            locationA.setLongitude(LongitudeA);
            locationA.setLatitude(LatitudeA);

            //set locationB's longitude,latitude

            Location locationB = new Location("others");

            locationB.setLongitude(??????);
            locationB.setLatitude(?????);


            //show distance
            double distance;
            distance =locationA.distanceTo(locationB)/100;

            int km = (int)distance;

            String meter;
            meter=Double.toString(km);
            holder.distanceView.setText(meter+"km");//recyclerview
        }

        @Override
        public void onCancelled(@NonNull DatabaseError databaseError) {

        }
    });
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...