I'm using geocoder, I have database of coordinates, I want to fetch the coodinates within the radius of 5 km using geocoder. In rails I could do that as followed:
Venue.near([40.71, -100.23], 20) # venues within 20 miles of a point
how to do this using django geocoder????