There are 2 examples in the Matterport SDK for Embeds documentation to show how to place Mattertags in a scene:
- The Intersection Inspector which only allows you to see coordinates for placing a Mattertag where the cursor is if you wait a little bit ... Not very user friendly, you need to copy the coordinates manually in your program.
- The Transient Tags Editor which enable you to interactively place multiple Mattertags visually, edit them and then to extract them easily in a JSON file ...
I was wondering how to reproduce the Transient Tags Editor visual UX as I would like to use it in an application.
Insert Mattertags into the model visually
The source code of the app of the Transient Tags Editor is privately hosted on github (Maybe because it doesn't run perfectly on Firefox?), unlike the source code of the Intersection Inspector which is publicly hosted on JSFiddle.
But the user friendliness of the Transient Tags Editor intrigued me and I wanted to understand the difference between the two tools Matterport SDK provides to find out Mattertags coordinates.
How the Intersection Inspector works
The Intersection Inspector uses a timer to display a button at the position of the
Pointer
when the user does not move the pointer for more than one second. The user can then click the button to see the Mattertag coordinates and copy them manually ...To achieve that, it needs the current
Camera
position, which it obtains by observing the camera'spose
property:Also, it needs the current
Pointer
position, which it obtains by observing the pointer'sintersection
property:※ An
intersection
event is triggered the user moves the pointer, so we hide the button to make sure it is not displayed before the one second delay is over.Then, a timer is set up using
setInterval()
to display the button at the right time:In the timer callback, we check wether all the conditions to display the button are met ...
intersection
event was received, or we wait the next tick to check again:Once the conditions are met, we can display the button using
Conversion.worldToScreen()
to get the screen coordinate of the pointer :The button is a simple HTML button hidden by default using
display: none;
and positioned relative to the body withposition: absolute;
.When the user clicks the button, the current coordinates of the pointer are displayed in a
<div>
tag above the<iframe>
and the button is hidden:The coordinates are formatted using the following function:
Now, let's see how the easier-to-use and user-friendlier Transient Tags Editor interface works ...
How the Transient Tag Editor works
The Intersection Inspector is enough if you just have a few __Mattertag__s to set permanently in a few models in your application. But if you need your users to set tags interactively in models, something like the Transient Tags Editor's GUI is a better starting point.
The main advantage of using the Transient Tags Editor is that you can see how the
Mattertag
will be displayed before creating it and! That allows you to place the tag precisely without trial and error ...To add a tag, you must click on the "Place New Tag" button to enter the "add tag" mode, then you can place one new tag anywhere you want.
We will only focus on that aspect of the editor and produce a simplified code sample that only add tags:
Mattertag.add()
:Mattertag.editPosition()
:As you can see the
updateTagPos()
function takes 3 parameters:Mattertag
.Mattertag
.Mattertag
.intersection
property to callupdateTagPos()
:document.activeElement
method for intercepting clicks on the<iframe>
(but does not work with Firefox so the editor use a quite complex workaround):But, we will use our version which works better with Firefox (But still stop working after the first click in Firefox for whatever reason):
Mattertag.navigateToTag()
Simple Editor Code Sample
First, the complete JavaScript source code:
The HTML source code:
It works!
Complete Code
The complete code for this sample and others is available on github: github.com/loic-meister-guild/pj-matterport-sdk-2021-tutorial
See Also