web api instance method
XRFrame: createAnchor() method
Limited availabilitySecure context
The createAnchor() method of the XRFrame interface creates a free-floating XRAnchor which will be fixed relative to the real world.
See createAnchor() for creating an anchor from a hit test result that is attached to a real-world object.
Syntax
createAnchor(pose, space)
Parameters
pose- : An
XRRigidTransformobject 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.
- : An
space- : An
XRSpaceobject the pose is relative to.
- : An
Return value
A Promise resolving to an XRAnchor object.
Examples
Creating 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.