你好,可以使用L.imageOverlay()添加图片图层,例如:
 var imageWidth = 100;
  var imageHeight = 60;
    var bounds = [
        [0, 0],
        [imageHeight, imageWidth],
      ];
      var imageOverlay = L.imageOverlay(
        './img/1.png',
        bounds,
      ).addTo(map);
图层显隐可以参考示例,将imageOverlay 放在overlayMaps中。
https://iclient.supermap.io/examples/leaflet/editor.html#controler_layerswitcher