I want to fetch shops on the basis of user location in Firestore.
Firestore structure:
shopCollection
        shopDoc1
            city:"city",
            address:"xyz",
               lat:35,
               long:25
        shopDoc2....
I want to retrieve all the shops that are near to user with distance. How can i do this?