Filter features by attribute

This sample demonstrates how to filter features by attributes on the client-side. This can be done by creating a new FeatureFilter and specifying its where clause, then applying the filter object to the layer view's filter property.

How it works

The sample filters flash flood warnings by the season they are issued in. To see the flash flood warnings issued in different seasons, click on the filter button, then select a season.

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
// User clicked on Winter, Spring, Summer or Fall
// set an attribute filter on flood warnings layer view
// to display the warnings issued in that season
function filterBySeason(event) {
  const selectedSeason = event.target.getAttribute("data-season");
    floodLayerView.filter = {
      where: "Season = '" + selectedSeason + "'"
    };
}

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