我想团结一致地使用Google Cloud Anchor技术开发移动应用。 我使用一种方法来创建锚点。运行create方法后如何检索cloudAnchorId。
public static AsyncTask<CloudAnchorResult> CreateCloudAnchor(Anchor anchor)
{
return CloudServiceManager.Instance.CreateCloudAnchor(anchor);
}
我已经添加了一些代码,但是仍然无法正常工作。我应该把什么作为createCloudAnchor方法的参数?
DatabaseReference referenceAnchorId = FirebaseDatabase.DefaultInstance.RootReference.Child("room/");
string CloudAnchorId = XPSession.CreateCloudAnchor(GoogleARCore.Anchor).CloudId;
referenceAnchorId.Push().SetRawJsonValueAsync(CloudAnchorId);