Class ViewerActions aims to document the viewer actions that can be triggered using the Viewer3DM.doAction() function.
Availability of these actions might change over time.
All actions described here can be triggered by passing a single string argument.
Pass this string : setSetting:measureTechnique:<technique>.
Replace <technique> by one of the constants starting with MEASURE_TECHNIQUE_.
Example : doAction("setSetting:measureTechnique:4") will set the measure technique to forward intersection.
Using actions, ContextShare reality data resources can also be opened or closed in an open workspace.
Before opening, connection parameters need to be set :
The token provider. This value can be either a real token (type string) or a function with signature () => Promise<string>.
When providing a token string, and the token has a short life-span, this action should be repeated before the token expires.
Example: doAction("setContextShareService",AList.fromArray([serviceURL,token])) (where both serviceURL and token are strings).
Example2: doAction("setContextShareService",AList.fromArray([serviceURL,getAccessToken])) (where getAccessToken is a function returning a Promise to a string).
Class ViewerActions aims to document the viewer actions that can be triggered using the Viewer3DM.doAction() function. Availability of these actions might change over time. All actions described here can be triggered by passing a single string argument.
Start a measurement
To start measurement, you must first know the code of the measurement mode you want to start.
Use these steps to determine the code of a measurement mode :
Viewer3DM.onMeasureStateChangedsignal.modeproperty of theMeasureStateinstance provided as payload to theViewer3DM.onMeasureStateChangedsignal handler.Pass this string as first argument :
startMeasure:<mode>where<code>is the measurement mode.Clear a measurement
Pass this string :
clearMeasure.Stop current measurement
Pass this string :
stopMeasure.Set the measurement technique
Pass this string :
setSetting:measureTechnique:<technique>.Replace
<technique>by one of the constants starting withMEASURE_TECHNIQUE_.Example :
doAction("setSetting:measureTechnique:4")will set the measure technique to forward intersection.Start the overlay object select function
Pass this string :
startOverlayObjectSelectHide visibility of the sidebar
Pass this string :
setSetting:sidebarVisible:falseSet position of the main sidebar
Pass this string :
setSetting:sidebarPosition:rightPossible values are 'left' or 'right'.
Toggle fullscreen
Pass this string :
toggleFullscreenEnter or exit fullscreen mode.
ContextShare Reality Data : Setup connection parameters
Using actions, ContextShare reality data resources can also be opened or closed in an open workspace.
Before opening, connection parameters need to be set :
Pass this string :
setContextShareServiceProvide the following arguments :
() => Promise<string>.When providing a token string, and the token has a short life-span, this action should be repeated before the token expires.
Example:
doAction("setContextShareService",AList.fromArray([serviceURL,token]))(where both serviceURL and token are strings).Example2:
doAction("setContextShareService",AList.fromArray([serviceURL,getAccessToken]))(where getAccessToken is a function returning a Promise to a string).ContextShare Reality Data : Open a Resource
Pass this string :
openContextShareResourceProvide the following arguments :
ContextShare Reality Data : Close a Resource
Pass this string :
closeContextShareResourceProvide the following arguments :