如何使用Geo Queries获取通过的GeoLocation(double lat, double lng)
附近的所有位置。
我有以下代码(它什么也没有发生):
public void setCurrentLatLng(double lat, double lng){
this.lat = lat;
this.lng = lng;
GeoLocation geoLocation = new GeoLocation(lat, lng);
updateCurrenLocation(geoLocation);
GeoQuery geoQuery = geoFire.queryAtLocation(geoLocation, 8f);
geoQuery.addGeoQueryDataEventListener(new GeoQueryDataEventListener() {
@Override
public void onDataEntered(DataSnapshot dataSnapshot, GeoLocation location) {
Log.d("geoQuery","onDataEntered "+dataSnapshot.toString());
// ...
}
@Override
public void onDataExited(DataSnapshot dataSnapshot) {
Log.d("geoQuery","onDataExited "+dataSnapshot.toString());
// ...
}
@Override
public void onDataMoved(DataSnapshot dataSnapshot, GeoLocation location) {
Log.d("geoQuery","onDataMoved "+dataSnapshot.toString());
// ...
}
@Override
public void onDataChanged(DataSnapshot dataSnapshot, GeoLocation location) {
Log.d("geoQuery","onDataChanged "+dataSnapshot.toString());
// ...
}
@Override
public void onGeoQueryReady() {
// ...
Log.d("geoQuery","onGeoQueryReady");
}
@Override
public void onGeoQueryError(DatabaseError error) {
Log.d("geoQuery","onGeoQueryError");
// ...
}
});
this.setChanged();
notifyObservers();
this.clearChanged();
Log.d("update","clearChanged");
}
我认为我愿意根据需要修改数据结构。
09-12 08:55:33.818 17710-17710/es.rchampa.weirdo D/geoQuery: lat=40.4430883 lng=-3.721805
09-12 08:55:33.982 17710-17710/es.rchampa.weirdo D/geoQuery: lat=40.4430883 lng=-3.721805
09-12 08:55:33.986 17710-17710/es.rchampa.weirdo D/geoQuery: onGeoQueryReady
09-12 08:55:34.025 17710-17710/es.rchampa.weirdo D/geoQuery: onGeoQueryReady
成绩文件
....
// Firebase
implementation 'com.google.firebase:firebase-database:16.0.1'
implementation 'com.google.firebase:firebase-storage:16.0.1'
implementation 'com.google.firebase:firebase-auth:16.0.3'
implementation 'com.google.firebase:firebase-crash:16.2.0'
implementation 'com.google.firebase:firebase-core:16.0.3'
// Firebase UI
implementation 'com.firebaseui:firebase-ui-database:1.2.0'
//Firebase GeoFire
implementation 'com.firebase:geofire-android:2.3.1'
// Google Play Services
implementation 'com.google.android.gms:play-services-auth:16.0.0'
implementation 'com.google.android.gms:play-services-maps:15.0.1'
implementation 'com.google.android.gms:play-services-location:15.0.1'
....
如果您愿意,我可以授予访问我的私人仓库的权限。
答案 0 :(得分:3)
您将值8f
(浮动)传递为radius
,而radius
应该是8.0d
或Double.valueOf(8.0)
,其中{{1 }}等于MAX_SUPPORTED_RADIUS
公里。
尽管实际问题是,8587
已经需要了解GeoFire
,但是不可能用.child("location")
来表示;只有Reference
有DataSnapshot
。
最重要的是:
您必须创建单独的位置
getChildren()
,以避免嵌套。不过,您仍然可以为这些节点使用相关的Reference
键(或至少将其添加为子节点),以便能够在用户 {{1 }}。是两个uid
之间的Reference
关系。
这是一个有效的1:1
示例,仅因为...
我们假设采用以下结构(如上所述):
Reference
数据库规则应为Java
字段{
"locations" : {
"CR88aa9gnDfJYYGq5ZTMwwC38C12" : {
".priority" : "9q8yywdgue",
"g" : "9q8yywdgue",
"l" : [ 37.7853889, -122.4056973 ]
}
},
"users" : {
"CR88aa9gnDfJYYGq5ZTMwwC38C12" : {
"displayName" : "user 01",
...
}
}
}
设置.indexOn
:
locations
模块g
中的依赖项:
{
"rules": {
...
"locations": {
".indexOn": "g"
}
}
}
这演示了如何通过build.gradle
结果获取用户的快照;
通知dependencies {
...
implementation "com.firebase:geofire-android:2.3.1"
}
而不是GeoQuery
:
GeoQueryEventListener
为了维护完整性,当删除用户记录时,需要删除关联的位置记录-否则将导致键,无法再查找。
答案 1 :(得分:2)
问题是当您通过半径时 根据问题https://github.com/firebase/geofire-java/issues/72
double radius = 8589; // Fails
// double radius = 8587.8; //Passes
尝试这样传递值可能会有所帮助
//GeoQuery geoQuery = geoFire.queryAtLocation(geoLocation, 8f);
GeoQuery geoQuery = geoFire.queryAtLocation(geoLocation, radius);
通过值8f(浮点)作为半径,而半径 应该是8.0d或Double.valueOf(8.0),其中 MAX_SUPPORTED_RADIUS等于8587公里。