Presented at the 2026 Esri Developer Summit by Kelly Hutchins and Kitty Hurley in Palm Springs, California on Wednesday, March 11.
- Map Description and Live Regions
- Provide context as to when the map has loaded and include a description when the map is in focus to further WCAG's 1.3.1: Info and Relationships Success Criterion.
- Visual Scale
- Demonstrates how to use the
visualScaleproperty to increase the size of map UI controls, including Expand, Zoom, and Home.
- Demonstrates how to use the
- Expand Component
- Demonstrates Expand behavior with focus trap handling using focus-trap-disabled and close-on-esc-disabled.
- Shows explicit focus management between Search and Popup: focus moves to the popup after search completes, then returns to Search when the popup closes.
- Supports both the default locator and a layer-based search source in the web map, including census tract search with keyboard access to popup details.
- Reduced Motion
- Shows how map animations can respect the user’s motion preference.
- Includes controls to explicitly play or pause animation.
- Note: disabling animation affects all animation, including goTo zoom transitions.
- High Contrast
- Note: requires an API token, the current token expires on April 1, 2026
- Showcase high-contrast basemaps and Calcite theming to improve perceivability for users with low vision in line with WCAG's 1.4.3: Contrast (Minimum) Success Criterion.
- Consistent focus
- Provide a visible focus and consistent navigation throughout an application via keyboard.
- Feature Panel
- Uses the
arcgis-featurecomponent to display features in the current map extent within a side panel, with keyboard-accessible navigation through feature results.
- Uses the
These demos use JavaScript modules (including shared files in demos/shared), so they must be served over http://.
Opening index.html files directly with file:// may fail.
-
Open a terminal in the repository root.
-
Start a local server:
npx serve . -
Open a demo in your browser, for example:
http://localhost:3000/demos/features-panel/index.html
npx http-server -p 8080 .Then open:
http://localhost:8080/demos/expand-component/index.html