标签: python python-3.x firebase google-cloud-firestore
我正在尝试使用Python将GeoPoint保存在Firebase Firestore中,但没有成功。 这给了我语法错误:
location=new firebase.firestore.GeoPoint(latitude, longitude)
对此有什么解决方案吗?也许我缺少要导入的内容,但找不到。预先感谢。
答案 0 :(得分:1)
您只需要location=firebase.firestore.GeoPoint(latitude, longitude)而无需新内容。
location=firebase.firestore.GeoPoint(latitude, longitude)