So I'm trying to retrieve entries based on their location/coordinates, within a given radius. And have been successful using this :
$query = new \Contentful\Delivery\Query;
$query->setContentType('store')
->where('fields.location[within]', '-37, 144, 50');
However, the order in which they are returned aren't ordered by their distance to the given centre of the radius. Any help please? Thanks.