如何使用firestore-export-import将带有GeoPoint字段的JSON导入Cloud Firestore?

时间:2019-05-29 05:54:42

标签: javascript firebase google-cloud-firestore

我有基于位置的数据,我想将经度和纬度坐标另存为GeoPoints。但是,我正在使用firestore-export-import加载数据,但是字段以字符串形式出现。

如何以识别Geopoint数据类型的方式上传数据?还是有一种方法可以校正所有字段,是否可以通过质量函数将这些特定字段从字符串切换为Geopoint?

我尝试了多种方法(_lat,_latitude和新的firebase.firestore.GeoPoint):

"Location": {
  "_latitude": 49.290683,
  "_longitude": -123.133956
}

"Location": {
  "_lat": 49.290683,
  "_long": -123.13395
}

new firebase.firestore.GeoPoint(latitude, longitude);

它始终保存为Cloud Firestore中的地图:

"Location": {
 "_lat": 49.290683,
 "_long": -123.133956
}

0 个答案:

没有答案