Hi @David Francis ,
For this one, is this with a specific device? HoloLens? Phone? Tablet?
Also, can you advise what version of the ASA SDK you are using for the project? This should work if the wayfinding steps are followed:
https://learn.microsoft.com/en-us/azure/spatial-anchors/concepts/anchor-relationships-way-finding
From the sample, you may just need to add more to criteria for distance and count you want:
NearAnchorCriteria nac = new NearAnchorCriteria();
nac.SourceAnchor = nearbyAnchor;
nac.DistanceInMeters = 10;
nac.MaxResultCount = 3;
Thanks,
Nathan