EnJ
EnJ

Reputation: 197

How to check the saved Azure spatial anchor via Azure portal

I save the anchor to the cloud and how to use the Azure portal to check the saved anchor? Thanks.

YL

Upvotes: 0

Views: 292

Answers (1)

ClaudiuC_MSFT
ClaudiuC_MSFT

Reputation: 156

ASA work like this: you first create an anchor in your platform's AR system, and then create a cloud counterpart.

You can check different graphs in Azure Portal - ASA resource - Overview tab - Monitoring : Anchors created/updated/deleted & Poses found.

You can't access pose information from Azure portal. You can query those in your code with something like this:

Pose anchorPose = currentCloudAnchor.GetPose();
    feedback.text = "Anchor Position: " + anchorPose.position + " Rotation: " 

Upvotes: 2

Related Questions