在没有Geofirestore的情况下在Firestore中保存GeoPoints,以及如何在Android Studio中实施firestore admin

时间:2019-05-11 09:13:57

标签: android firebase google-cloud-firestore geofirestore

当前,我正在使用Geofirestore将位置写入Firestore DB。使用下面的代码。

CollectionReference geoFirestoreRef = 
FirebaseFirestore.getInstance().collection("Geofence");
GeoFirestore geoFirestore = new GeoFirestore(geoFirestoreRef);
geoFirestore.setLocation(cid, new GeoPoint(lat, lng));

我们可以在firestore中使用geopoints类来做同样的事情吗?是否需要firestore管理员,如果是,则如何在android studio中实施。

我尝试使用以下代码插入db,但未成功

 location: new admin.firestore.GeoPoint(28.52038,77.28073);
or location: new firebase.firestore.GeoPoint(28.52038, 77.28073);

0 个答案:

没有答案