5

我正在保存用户发布的帖子的坐标。我正在生成一个推送 ID,然后使用它来保存帖子的数据和地火坐标。

我只想显示那些在它们半径 0.5 公里内的帖子。我正在使用GeoFire相同的库,但我无法完成任务。

这是我生成推送 id 的方式:

itemID = databaseReferenceRequests.push().getKey();

以下是我使用它来保存地理坐标以及帖子数据的方法:

geoFire.setLocation(itemID, 
        new GeoLocation(Double.parseDouble(currentLat.getText().toString()), 
        Double.parseDouble(currentLng.getText().toString())));

databaseReferenceRequests.child(itemID).setValue(hRequest);

它是这样保存的:

在此处输入图像描述

问题是,当我尝试仅获取距离我 0.5 公里范围内的那些帖子时,它并没有发生,并且无论是近还是远的所有帖子都被检索到。

这是我检索它的方式:

public void retrieveHelpRequests() {

            geoQuery = geoFire.queryAtLocation(new GeoLocation(currentLatDouble, currentLngDouble), 0.5);

            geoQuery.addGeoQueryEventListener(new GeoQueryEventListener() {
                @Override
                public void onKeyEntered(String key, GeoLocation location) {
                    databaseReference.child("help-requests").addListenerForSingleValueEvent(new ValueEventListener() {
                    @Override
                    public void onDataChange(DataSnapshot dataSnapshot) {
                        Map<String, String> newRequest = (Map<String, String>) dataSnapshot.getValue();
                        imageUID = newRequest.get("imageUIDh");
                        homelessDescription = newRequest.get("homelessDescription");
                        currentLat = newRequest.get("currentLat");
                        currentLng = newRequest.get("currentLng");
                        postedBy = newRequest.get("postedBy");
                        postedAtTime = newRequest.get("postedAtTime");
                        postedOnDate = newRequest.get("postedOnDate");
                        utcFormatDateTime = newRequest.get("utcFormatDateTime");

                        String timeStr = utcFormatDateTime;
                        SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
                        df.setTimeZone(TimeZone.getTimeZone("UTC"));
                        Date date = null;
                        try {
                            // error on line below
                            date = df.parse(timeStr);
                        } catch (ParseException e) {
                            e.printStackTrace();
                        }
                        df.setTimeZone(TimeZone.getDefault());
                        final String persisted = df.format(date);

                        // Parse string from DB - UTC timezone
                        Date parsed = null;
                        try {
                            parsed = df.parse(persisted);
                        } catch (ParseException e) {
                            e.printStackTrace();
                        }

                        // Now convert to whatever timezone for display purposes
                        final SimpleDateFormat displayFormat = new SimpleDateFormat("h:mm a");
                        displayFormat.setTimeZone(TimeZone.getDefault());

                        formattedTime = displayFormat.format(parsed);

                        prepareDataForRequests();
                    }

                    @Override
                    public void onCancelled(DatabaseError databaseError) {
                        Snackbar snackbar = Snackbar
                                .make(coordinatorLayout, databaseError.getMessage(), Snackbar.LENGTH_LONG);
                        snackbar.setDuration(Snackbar.LENGTH_SHORT);
                        snackbar.show();
//                helpRequestsLoadingDialog.dismiss();
                        progressBarLoadingRequests.setVisibility(View.INVISIBLE);
                    }
                });

                    databaseReference.child("help-requests").addValueEventListener(new ValueEventListener() {
                        @Override
                        public void onDataChange(final DataSnapshot dataSnapshot) {
    //                adView.loadAd(request);
                            card_ads2.setVisibility(View.VISIBLE);
                            adView2.loadAd(request2);
                            if (snackbar != null) {
                                snackbar.dismiss();
                            }
                            progressBarLoadingRequests.setVisibility(View.INVISIBLE);

                            if (fastItemAdapter.getAdapterItemCount() == 0) {
                                emptyRVtext.setVisibility(View.VISIBLE);
                                emptyRVtexthh.setVisibility(View.VISIBLE);
                                card_ads2.setVisibility(View.INVISIBLE);
                            } else {
                                emptyRVtext.setVisibility(View.INVISIBLE);
                                emptyRVtexthh.setVisibility(View.INVISIBLE);
                            }

    //                progressBarLoadingRequests.setVisibility(View.INVISIBLE);
                        }

                        @Override
                        public void onCancelled(DatabaseError databaseError) {
                            Snackbar snackbar = Snackbar
                                    .make(coordinatorLayout, databaseError.getMessage(), Snackbar.LENGTH_LONG);
                            snackbar.setDuration(Snackbar.LENGTH_SHORT);
                            snackbar.show();
    //                hRequestsLoadingDialog.dismiss();
                            progressBarLoadingRequests.setVisibility(View.INVISIBLE);
                        }
                    });
                }

                @Override
                public void onKeyExited(String key) {

                }

                @Override
                public void onKeyMoved(String key, GeoLocation location) {

                }

                @Override
                public void onGeoQueryReady() {

                }

                @Override
                public void onGeoQueryError(DatabaseError error) {
                    Toast.makeText(getBaseContext(), "Error retriving geoquery", Toast.LENGTH_SHORT).show();
                }
            });

        }

这是错误:

java.lang.NullPointerException: Attempt to invoke virtual method 'int java.lang.String.length()' on a null object reference

请让我知道如何仅检索用户 0.5 公里以内的帖子?

4

3 回答 3

2

还有一种方法可以在 Java 中的 Geo Query 中找到匹配项。代码与 UI 非常相似。请在下面的链接中查看工作代码片段。 https://youtu.be/M9d526OyG54 搜索驱动程序:: 系列中的第 15 篇教程。

于 2019-12-12T09:25:44.743 回答
1

对此我知之甚少,我无能为力,但是从此处的 GeoFire 2.0 页面中查看您的代码,此摘录在 javascript(而不是 java)中给出了您正在寻找的内容的一个很好的大纲。

GeoFire 的真正实用性通过创建 GeoQuery 来展示。假设您正在为骑自行车的人制作一个应用程序,它显示用户当前位置一英里(1.609 公里)内的自行车商店。您需要做的第一件事是将您关心的自行车商店添加到 GeoFire。然后,创建一个以用户当前位置为中心的查询(假设他们在 [37.4, -122.6]):

var geoQuery = geoFire.query({
  center: [37.4, -122.6],
  radius: 1.609 //kilometers
});

单独的查询不是很有用。但是,GeoFire 允许您添加在发生重要查询事件时触发的回调函数。由于您要显示与查询条件匹配的每个自行车商店,请侦听 key_entered 事件。每次一个键(即自行车商店)进入查询时,您定义的回调将使用有关该位置的数据调用:

geoQuery.on("key_entered", function(key, location, distance) {
  console.log("Bicycle shop " + key + " found at " + location + " (" + distance + " km away)");
});

重要的是要意识到 key_entered 事件的工作方式与典型的 Firebase 事件类似。也就是说,它将为 GeoFire 中与查询条件匹配的每个键触发,包括 GeoFire 中已经存在的键和将来任何时候添加的键。感谢 Firebase,您可以实时收到这些事件。

GeoFire 对于如何在查询中查找键很聪明。它不需要将所有 GeoFire 数据加载到内存中。如果您的用户正在寻找旧金山的自行车商店,GeoFire 将不会加载纽约位置的数据,只会意识到它们位于该国的另一边。它只检查实际附近的位置。无论您的数据集有多大,这都能让您的应用程序轻巧且响应迅速。

如果您的用户在寻找要访问的商店时骑自行车,那么距离他们一英里内的商店现在可能更远了。为了解决这个问题,GeoFire 将为离开查询的每个键触发 key_exited 事件:

geoQuery.on("key_exited", function(key, location, distance) {
  console.log("Bicycle shop " + key + " left query to " + location + " (" + distance + " km away)");
});

这就是使您的应用程序正常运行所需的全部内容。

可用于 Java 的详细信息似乎较少,但对于您尝试执行的操作而言,这似乎是:

GeoQuery geoQuery = geoFire.queryAtLocation(currentUserLocation, 1.6);

参考这里

于 2016-07-15T06:55:30.097 回答
1

您只需要更改的第二个参数queryAtLocation()

double radius = 0.5; // in km
geoQuery = geoFire.queryAtLocation(new GeoLocation(currentLatDouble, currentLngDouble), radius);

您确定所有距离用户超过 0.5 公里的项目都被检索到了吗?这是验证它们的方法

Location userLocation = new Location("userLocation");
userLocation.setLatitude(currentLatDouble);
userLocation.setLongitude(currentLngDouble);
geoQuery.addGeoQueryEventListener(new GeoQueryEventListener() {
    @Override
    public void onKeyEntered(String key, GeoLocation location) {
        Location itemLocation = new Location("itemLocation");
        itemLocation.setLatitude(location.latitude);
        itemLocation.setLongitude(location.longitude);
        Log.d("distance to " + key" is", userLocation.distanceTo(itemLocation) + "");
    }
于 2016-07-15T06:44:35.517 回答