(self, field, point, distance)
| 49 | return self.get_search_queryset().within(field, point_1, point_2) |
| 50 | |
| 51 | def dwithin(self, field, point, distance): |
| 52 | return self.get_search_queryset().dwithin(field, point, distance) |
| 53 | |
| 54 | def distance(self, field, point): |
| 55 | return self.get_search_queryset().distance(field, point) |
nothing calls this directly
no test coverage detected