I have data structured as :
properties : 
    unique-property-id :
        lat: 41.032, 
        lng: 28.9832
    another-unique-property-id:
        lat: another-lat,
        lng: another-lng
How can I search these properties as between max_lat and min_lat and between max_lng and min_lng ?
I am using firebase-php
Do I have to download all the data and do a search on php side?