I know how to query IndexTank with a query string, with or without geolocation. But how do you query with no query string and only geolocation?
index.addFunction(5, "-miles(d[0], d[1], q[0], q[1])");
results = index.search(Query.forString(queryString)
.withScoringFunction(5)
.withQueryVariable(0, latitude)
.withQueryVariable(1, longitude));
If the queryString is null or an empty string it doesn't work.
Thanks.