Show extent

This sample demonstrates how to watch for changes on the map view.

How to use the sample

Clone the sample repo and copy this widget's folder (within widgets) to the client/your-extensions/widgets folder of your Experience Builder installation.

How it works

A class property onActiveViewChange for the widget is assigned to the function JimuMapView. This function uses the jimuMapView.view.watch() method, which takes two imput parameters, the extent property and a callback function to execute each time the extent property changes. The setState method is called to re-render the widget with the updated state.

onActiveViewChange = (jimuMapView: JimuMapView) => {
  if(!this.extentWatch){
    this.extentWatch = jimuMapView.view.watch('extent', extent => { 
      this.setState({
        extent
      })
    });
  }
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.

You can no longer sign into this site. Go to your ArcGIS portal or the ArcGIS Location Platform dashboard to perform management tasks.

Your ArcGIS portal

Create, manage, and access API keys and OAuth 2.0 developer credentials, hosted layers, and data services.

Your ArcGIS Location Platform dashboard

Manage billing, monitor service usage, and access additional resources.

Learn more about these changes in the What's new in Esri Developers June 2024 blog post.

Close