function deselectPoint()

in src/drawUnclusteredLayer.ts [19:28]


  function deselectPoint() {
    if (selectedId !== null) {
      map.setLayoutProperty(
        unclusteredLayerId,
        "icon-image",
        "inactive-marker"
      );
      selectedId = null;
    }
  }