I want to retrieve from my mongoDb every point inside a certain distance range. Each element stores its position this way : [latitude, longitude] where latitude and longitude are float value.
Ex : I want every point from my db at max 100km from [48.862586, 2.352210]
Calculate the distance between my reference point and all the other to know if the its under the limit distance doesn't sound like a good idea... Is there a way to ask google map API or another one (or by myself) to do that ?