I want to get all the lat and long of the user with in 1 km distance. For example i have the user current location latitude and longitude i want to find all of his friends with in 1 km distance.
User1 current Latitude : '25.276987'
User1 current Longitude: '55.296249'
Similarly I have all the other users lat and long with me.
{'user2':{lat:'25.122212','long':'55.296249'},'user3':{lat:'25.222212','long':'55.396249'}}
I want to find all the other users who are in 1 km distance of user1.
i tried this but did not help me.
Any help would be greatly appreciated. Thanks..