Hi there,
I've made a simple collection in firestore that stores geolocation data. This collection is then used by the Google Maps Component to draw markers on a map. Let's call this collection 'markers_location_only'
Upon tapping a marker I want it to query another collection (markers_all_data) for the remaining data (title, description etc). As I use the geolocation as the identifier here I need to retrieve the document from 'markers_all_data' where the geolocation equals the geolocation of (markers_location_only).
It's pretty simple logic, but I can't seem to find how to retrieve the geolocation data from the tapped marker. It sounds like a logical thing to be able to do. Is this not possible or am I just not seeing the option?
Would love any help:)