Esri Leaflet

Querying features

Configuring a query to filter features on a L.esri.Layers.FeatureLayer. More information about Feature Layers can be found in the L.esri.Layers.FeatureLayer documentation.

<html>
<head>
  <meta charset=utf-8 />
  <title>Querying features</title>
  <meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />

  <!-- Load Leaflet from CDN-->
  <link rel="stylesheet" href="//cdn.jsdelivr.net/leaflet/0.7.3/leaflet.css" />
  <script src="//cdn.jsdelivr.net/leaflet/0.7.3/leaflet.js"></script>

  <!-- Load Esri Leaflet from CDN -->
  <script src="//cdn.jsdelivr.net/leaflet.esri/1.0.3/esri-leaflet.js"></script>

  <style>
    body { margin:0; padding:0; }
    #map { position: absolute; top:0; bottom:0; right:0; left:0; }
  </style>
</head>
<body>

<style>
  #query {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: white;
    padding: 1em;
  }

  #query select {
    font-size: 16px;
  }
</style>

<div id="map"></div>
<div id="query" class="leaflet-bar">
<label>
  Bus Direction
  <select id="direction">
    <option value=''>Any</option>
    <option value='North'>North</option>
    <option value='South'>South</option>
    <option value='East'>East</option>
    <option value='West'>West</option>
  </select>
</label>
</div>

<script>
  var map = L.map('map').setView([45.526, -122.667], 15);

  var icons = {
    north: L.icon({
      iconUrl: '{{assets}}img/bus-stop-north.png',
      iconRetinaUrl: '{{assets}}img/bus-stop-north@2x.png',
      iconSize: [27, 31],
      iconAnchor: [13.5, 17.5],
      popupAnchor: [0, -11]
    }),
    south: L.icon({
      iconUrl: '{{assets}}img/bus-stop-south.png',
      iconRetinaUrl: '{{assets}}img/bus-stop-south@2x.png',
      iconSize: [27, 31],
      iconAnchor: [13.5, 13.5],
      popupAnchor: [0, -11]
    }),
    east: L.icon({
      iconUrl: '{{assets}}img/bus-stop-east.png',
      iconRetinaUrl: '{{assets}}img/bus-stop-east@2x.png',
      iconSize: [31, 27],
      iconAnchor: [13.5, 17.5],
      popupAnchor: [0, -11]
    }),
    west: L.icon({
      iconUrl: '{{assets}}img/bus-stop-west.png',
      iconRetinaUrl: '{{assets}}img/bus-stop-west@2x.png',
      iconSize: [31, 27],
      iconAnchor: [17.5, 13.5],
      popupAnchor: [0, -11]
    })
  };

  L.esri.basemapLayer('Streets').addTo(map);
  var stops = L.esri.featureLayer({
    url: 'https://services.arcgis.com/rOo16HdIMeOBI4Mb/arcgis/rest/services/Trimet_Transit_Stops/FeatureServer/0',
    pointToLayer: function (geojson, latlng) {
      return L.marker(latlng, {
        icon: icons[geojson.properties.direction.toLowerCase()]
      });
    }
  }).addTo(map);

  var direction = document.getElementById('direction');

  direction.addEventListener('change', function(){
    // its only valid sql to encase string values in single quotes
    stops.setWhere('direction=\'' + direction.value + '\'');
  });
</script>

</body>
</html>