> For the complete documentation index, see [llms.txt](https://docs.mapbox.com/mapbox-gl-js/llms.txt)

# Filter features by text input

Filter [GeoJSON](https://docs.mapbox.com/help/glossary/geojson/) features by name by typing in a text input.

> Example code:

**JavaScript**

```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Filter features by text input</title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<link href="https://api.mapbox.com/mapbox-gl-js/v3.29.0/mapbox-gl.css" rel="stylesheet">
<script src="https://api.mapbox.com/mapbox-gl-js/v3.29.0/mapbox-gl.js"></script>
<style>
body { margin: 0; padding: 0; }
#map { position: absolute; top: 0; bottom: 0; width: 100%; }
</style>
</head>
<body>
<style>
    .filter-ctrl {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1;
    }

    .filter-ctrl input[type='text'] {
        font:
            12px/20px 'Helvetica Neue',
            Arial,
            Helvetica,
            sans-serif;
        width: 100%;
        border: 0;
        background-color: #fff;
        margin: 0;
        color: rgba(0, 0, 0, 0.5);
        padding: 10px;
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
        border-radius: 3px;
        width: 180px;
    }
</style>
<div id="map"></div>
<div class="filter-ctrl">
    <input id="filter-input" type="text" name="filter" placeholder="Filter by name">
</div>

<script>
    // This GeoJSON contains features that include a "name"
    // property. The value of the "name" property is used as
    // the text shown for that feature.
    const places = {
        'type': 'FeatureCollection',
        'features': [
            {
                'type': 'Feature',
                'properties': {
                    'name': 'theatre'
                },
                'geometry': {
                    'type': 'Point',
                    'coordinates': [-77.038659, 38.931567]
                }
            },
            {
                'type': 'Feature',
                'properties': {
                    'name': 'theatre'
                },
                'geometry': {
                    'type': 'Point',
                    'coordinates': [-77.003168, 38.894651]
                }
            },
            {
                'type': 'Feature',
                'properties': {
                    'name': 'bar'
                },
                'geometry': {
                    'type': 'Point',
                    'coordinates': [-77.090372, 38.881189]
                }
            },
            {
                'type': 'Feature',
                'properties': {
                    'name': 'bicycle'
                },
                'geometry': {
                    'type': 'Point',
                    'coordinates': [-77.052477, 38.943951]
                }
            },
            {
                'type': 'Feature',
                'properties': {
                    'name': 'music'
                },
                'geometry': {
                    'type': 'Point',
                    'coordinates': [-77.031706, 38.914581]
                }
            },
            {
                'type': 'Feature',
                'properties': {
                    'name': 'music'
                },
                'geometry': {
                    'type': 'Point',
                    'coordinates': [-77.020945, 38.878241]
                }
            },
            {
                'type': 'Feature',
                'properties': {
                    'name': 'music'
                },
                'geometry': {
                    'type': 'Point',
                    'coordinates': [-77.007481, 38.876516]
                }
            }
        ]
    };

    const layerIDs = []; // This array will contain a list used to filter against.
    const filterInput = document.getElementById('filter-input');
    const map = new mapboxgl.Map({
        // TO MAKE THE MAP APPEAR YOU MUST
        // ADD YOUR ACCESS TOKEN FROM
        // https://account.mapbox.com
        accessToken: 'YOUR_MAPBOX_ACCESS_TOKEN',
        container: 'map',
        // Choose from Mapbox's core styles, or make your own style with Mapbox Studio
        style: 'mapbox://styles/mapbox/standard',
        config: {
            basemap: {
                theme: 'monochrome',
                showPlaceLabels: false,
                showPointOfInterestLabels: false,
                showRoadLabels: false,
                showTransitLabels: false
            }
        },
        center: [-77.04, 38.907],
        zoom: 11.15
    });

    map.on('load', () => {
        // Add a GeoJSON source containing place coordinates and information.
        map.addSource('places', {
            'type': 'geojson',
            'data': places
        });

        for (const feature of places.features) {
            const symbol = feature.properties.name;
            const layerID = `poi-${symbol}`;

            // Add a layer for this symbol type if it hasn't been added already.
            if (!map.getLayer(layerID)) {
                map.addLayer({
                    'id': layerID,
                    'type': 'symbol',
                    'source': 'places',
                    'layout': {
                        'text-field': symbol,
                        'text-font': [
                            'Open Sans Bold',
                            'Arial Unicode MS Bold'
                        ],
                        'text-size': 11,
                        'text-transform': 'uppercase',
                        'text-letter-spacing': 0.05,
                        'text-offset': [0, 1.5]
                    },
                    'paint': {
                        'text-color': '#202',
                        'text-halo-color': '#fff',
                        'text-halo-width': 2
                    },
                    'filter': ['==', 'name', symbol]
                });

                layerIDs.push(layerID);
            }
        }

        filterInput.addEventListener('keyup', (e) => {
            // If the input value matches a layerID set
            // it's visibility to 'visible' or else hide it.
            const value = e.target.value.trim().toLowerCase();
            for (const layerID of layerIDs) {
                map.setLayoutProperty(
                    layerID,
                    'visibility',
                    layerID.includes(value) ? 'visible' : 'none'
                );
            }
        });
    });
</script>

</body>
</html>
```

**React**

```jsx
import React, { useEffect, useRef, useState } from 'react';
import * as mapboxgl from 'mapbox-gl/esm';

import 'mapbox-gl/dist/mapbox-gl.css';

const MapboxExample = () => {
  const mapContainerRef = useRef(null);
  const mapRef = useRef(null);

  const [layerIDs, setLayerIds] = useState();

  // Handle input
  function handleInput(e) {
    const value = e.target.value.trim().toLowerCase();
    for (const layerID of layerIDs) {
      mapRef.current.setLayoutProperty(
        layerID,
        'visibility',
        layerID.includes(value) ? 'visible' : 'none'
      );
    }
  }

  useEffect(() => {
    mapRef.current = new mapboxgl.Map({
      // TO MAKE THE MAP APPEAR YOU MUST
      // ADD YOUR ACCESS TOKEN FROM
      // https://account.mapbox.com
      accessToken: 'YOUR_MAPBOX_ACCESS_TOKEN',
      container: mapContainerRef.current,
      style: 'mapbox://styles/mapbox/standard',
      config: {
        basemap: {
          theme: 'monochrome',
          showPlaceLabels: false,
          showPointOfInterestLabels: false,
          showRoadLabels: false,
          showTransitLabels: false
        }
      },
      center: [-77.04, 38.907],
      zoom: 11.15
    });

    mapRef.current.on('load', () => {
      // This GeoJSON contains features that include an "name"
      // property. The value of the "name" property is used as
      // the text shown for that feature.
      const places = {
        type: 'FeatureCollection',
        features: [
          {
            type: 'Feature',
            properties: {
              icon: 'theatre'
            },
            geometry: {
              type: 'Point',
              coordinates: [-77.038659, 38.931567]
            }
          },
          {
            type: 'Feature',
            properties: {
              icon: 'theatre'
            },
            geometry: {
              type: 'Point',
              coordinates: [-77.003168, 38.894651]
            }
          },
          {
            type: 'Feature',
            properties: {
              icon: 'bar'
            },
            geometry: {
              type: 'Point',
              coordinates: [-77.090372, 38.881189]
            }
          },
          {
            type: 'Feature',
            properties: {
              icon: 'bicycle'
            },
            geometry: {
              type: 'Point',
              coordinates: [-77.052477, 38.943951]
            }
          },
          {
            type: 'Feature',
            properties: {
              icon: 'music'
            },
            geometry: {
              type: 'Point',
              coordinates: [-77.031706, 38.914581]
            }
          },
          {
            type: 'Feature',
            properties: {
              icon: 'music'
            },
            geometry: {
              type: 'Point',
              coordinates: [-77.020945, 38.878241]
            }
          },
          {
            type: 'Feature',
            properties: {
              icon: 'music'
            },
            geometry: {
              type: 'Point',
              coordinates: [-77.007481, 38.876516]
            }
          }
        ]
      };

      const layerIDs = [];

      mapRef.current.addSource('places', {
        type: 'geojson',
        data: places
      });

      for (const feature of places.features) {
        const symbol = feature.properties.icon;
        const layerID = `poi-${symbol}`;

        if (!mapRef.current.getLayer(layerID)) {
          mapRef.current.addLayer({
            id: layerID,
            type: 'symbol',
            source: 'places',
            layout: {
              'icon-image': `${symbol}`,
              'icon-allow-overlap': true,
              'text-field': symbol,
              'text-font': ['Open Sans Bold', 'Arial Unicode MS Bold'],
              'text-size': 11,
              'text-transform': 'uppercase',
              'text-letter-spacing': 0.05,
              'text-offset': [0, 1.5]
            },
            paint: {
              'text-color': '#202',
              'text-halo-color': '#fff',
              'text-halo-width': 2
            },
            filter: ['==', 'icon', symbol]
          });

          layerIDs.push(layerID);
        }
        // Set state for handleInput change event
        setLayerIds(layerIDs);
      }
    });
  }, []);

  return (
    <div style={{ height: '100%', position: 'relative' }}>
      <div id="map" ref={mapContainerRef} style={{ height: '100%' }}></div>
      <div
        style={{
          position: 'absolute',
          top: '10px',
          right: '10px',
          zIndex: 1
        }}
      >
        <input
          onChange={handleInput}
          type="text"
          name="filter"
          placeholder="Filter by name"
          style={{
            font: `12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif`,
            border: 0,
            backgroundColor: '#fff',
            margin: 0,
            color: 'rgba(0, 0, 0, 0.5)',
            padding: '10px',
            boxShadow: '0 0 0 2px rgba(0, 0, 0, 0.1)',
            borderRadius: '3px',
            width: '180px'
          }}
        />
      </div>
    </div>
  );
};

export default MapboxExample;
```