web api interface
XRAnchor
Secure contextLimited availability
The XRAnchor interface creates anchors which keep track of the pose that is fixed relative to the real world. With anchors, you can specify poses in the world that need to be updated to correctly reflect the evolving understanding of the world, such that the poses remain aligned with the same place in the physical world. That helps to build an illusion that the placed objects are really present in the user’s environment.
Instance properties
anchorSpaceRead only Experimental- : Returns an
XRSpaceobject to locate the anchor relative to otherXRSpaceobjects.
- : Returns an
Instance methods
delete()Experimental- : Removes the anchor.
Examples
Requesting a session with anchors enabled
navigator.xr.requestSession("immersive-ar", {
requireFeatures: ["anchors"],
});
Adding anchors
You can use createAnchor() to create an anchor.
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}`);
},
);
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.