XRHitTestResult: createAnchor() method
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The createAnchor()
method of the XRHitTestResult
interface creates an XRAnchor
from a hit test result that is attached to a real-world object.
Syntax
js
createAnchor()
Parameters
None.
Return value
Examples
Creating an anchor from a hit test result
The following example starts with an XRHitTestResult
retrieved by calling XRFrame.getHitTestResults()
. After calling createAnchor()
, the Promise resolves with an XRAnchor
to attach a virtual object to that location.
js
hitTestResult.createAnchor().then(
(anchor) => {
// add anchored objects to the scene
},
(error) => {
console.error(`Could not create anchor: ${error}`);
}
);
Specifications
Specification |
---|
WebXR Anchors Module # dom-xrhittestresult-createanchor |
Browser compatibility
BCD tables only load in the browser