Display and highlight buildings on map

by Tristen Brown

HTML

<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <title></title>
    <meta
      name="viewport"
      content="initial-scale=1,maximum-scale=1,user-scalable=no"
    />
    <script src="https://api.mapbox.com/mapbox-gl-js/v3.11.0/mapbox-gl.js"></script>
    <link
      href="https://api.mapbox.com/mapbox-gl-js/v3.11.0/mapbox-gl.css"
      rel="stylesheet"
    />
    <style>
      body {
        margin: 0;
        padding: 0;
      }
      #map {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
      }
    </style>
  </head>
  <body>
    <div id="map"></div>
    <script>
      mapboxgl.accessToken =
        "pk.eyJ1IjoiamNyaXRjaGxleS1tYXBib3giLCJhIjoiY2wxdXZ4dWNrMDBsYTNicGZmMjF6MTB4MyJ9.JZQ1_NCrVvpWlCbHtVTxpQ"

      const map = new mapboxgl.Map({
        container: "map",
        center: [-74, 40.72],
        zoom: 16,
        pitch: 40,
        style: "mapbox://styles/mapbox/standard"
      });

      let feature;

      map.addInteraction("move-handler", {
        type: "mouseleave",
        target: {
          featuresetId: "buildings",
          importId: "basemap",
        },
        handler: (e) => {
          console.log(e)
        },
      })
    </script>
  </body>
</html>