当前,我正在使用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);