How to hide the measurement annotation popup

Hi,

When clicking on a measurement annotation, a popup appears on the bottom right side of the screen. I’d like to hide this measurement annotation popup . How can I achieve that ?

Hello, I’m Ron, an automated tech support bot :robot:

While you wait for one of our customer support representatives to get back to you, please check out some of these documentation pages:

Guides:APIs:Forums:

Hi Antoine,

You can disable the measurement overlay element like this:

WebViewer(...).then(instance => {
  ...
  instance.UI.disableElement('measurementOverlay')
})

Thanks for your answer Yixiao !