我想在MKMapView上添加注释。对于这些注释,我需要坐标。我将所有坐标保存在Firebase Cloud Firestore中。我知道如何使用文档从一个集合中检索数据,但我的问题是如何使用称为“ Flitspaal”的文档检索所有数据。这就是我的结构:
Database.collection("Streets").document("variable")
.collection("variable").document("variable")
.collection("variable").document("variable")
.collection("Flitspaal").document("Flitspaal")
一个示例,其中填充了一些地点名称:
Database.collection("Streets").document("Nederland")
.collection("Gelderland").document("Nijmegen")
.collection("Berg en Dal").document("Berg en Dal")
.collection("Flitspaal").document("Flitspaal")
名为“ Flitspaal”的文档包含的数据如下:
Flitspaal: "Ja"
Flitspaal Snelheid: 50
Flitspaal weg: "Berg en Dalseweg"
Heading: "324.148193359375"
Lat: 51.82955994295671
Long: 5.90088959891424
Stoplicht: "Ja"
有人知道是否有可能获得所有具有“ Flitspaal”集合的文档的“ Lat”和“ Long”。谢谢!