Back to Content

XRAnchor

files/en-us/web/api/xranchor/index.md

latest1.5 KB
Original Source

{{APIRef("WebXR Device API")}}{{SecureContext_Header}}{{SeeCompatTable}}

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

  • {{domxref("XRAnchor.anchorSpace")}} {{ReadOnlyInline}} {{Experimental_Inline}}
    • : Returns an {{domxref("XRSpace")}} object to locate the anchor relative to other XRSpace objects.

Instance methods

  • {{domxref("XRAnchor.delete()")}} {{Experimental_Inline}}
    • : Removes the anchor.

Examples

Requesting a session with anchors enabled

js
navigator.xr.requestSession("immersive-ar", {
  requireFeatures: ["anchors"],
});

Adding anchors

You can use {{domxref("XRFrame.createAnchor()")}} to create an anchor.

js
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

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • {{domxref("XRAnchorSet")}}
  • {{domxref("XRFrame.createAnchor()")}}
  • {{domxref("XRFrame.trackedAnchors")}}
  • {{domxref("XRHitTestResult.createAnchor()")}}