This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The createAnchor() method of the XRFrame interface creates a free-floating XRAnchor which will be fixed relative to the real world.
See XRHitTestResult.createAnchor() for creating an anchor from a hit test result that is attached to a real-world object.
createAnchor(pose, space)
poseAn XRRigidTransform object with the initial pose where the anchor should be created. The system will make sure that the relationship with the physical world made at this moment in time is maintained as the tracking system's understanding of the world evolves.
spaceAn XRSpace object the pose is relative to.
A Promise resolving to an XRAnchor object.
frame.createAnchor(anchorPose, referenceSpace).then(
(anchor) => {
// Do stuff with the anchor (assign objects that will be relative to this anchor)
},
(error) => {
console.error(`Could not create anchor: ${error}`);
},
);
| Specification |
|---|
| WebXR Anchors Module> # dom-xrframe-createanchor> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
createAnchor |
85 | 85 | No | 71 | No | 85 | No | 60 | No | 14.0 | No | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/XRFrame/createAnchor