You are using a browser that is no longer supported. Please use the latest version of Google Chrome, Mozilla Firefox, Apple Safari, or Microsoft Edge. For more information please see the System Requirements.

Unsupported browser

You are using a browser that is not supported. JavaScript API works on the latest versions of Google Chrome, Mozilla Firefox, Apple Safari, or Microsoft Edge. Use one of these browsers and provide your feedback through GeoNet, the Esri Community.

  • {i18n.unsupportedBrowser.chrome}
  • Firefox
  • Safari
  • undefined
Loading...

Note: Support for 3D on mobile devices may vary, view the system requirements for more information.

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.

// 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 + "'"
    };
}

Sample search results

TitleSample
Loading...