mabox-gl 展示制定区域的影像,其他则有模态框

原理

一、 利用turf.mask将你想要的展示的geojson截取出来,这样就变成了一个中间镂空的geojson

turf.mask( ‘高亮数据’, ‘全球数据(这里用的正负180 和正负90)’);

二、用中间镂空的geojson,颜色设置成你想要的模态框的颜色 

三、绘制一个高亮的位置,颜色设置成你想要的颜色就可以了

zhegai() {
      if (map.getLayer("blueMask-line")) {
        map.removeLayer("blueMask-line");
      }
      if (map.getSource("blueMask")) {
        map.removeSource("blueMask");
      }
      map.addSource("blueMask", {
        type: "geojson",
        data: require("./shanxi.json"), // 网上下载的geoJson的地图文件
      });
      // 设置地图区域边沿的线宽和颜色值
      map.addLayer({
        id: `blueMask`,
        type: "line",
        source: "blueMask",
        layout: {},
        paint: {
          "line-width": 1.5,
          "line-color": "#286BFF",
        },
      });
      let polygon = {
        geometry: {
          coordinates: [
            [
              [-180, 90],
              [180, 90],
              [180, -90],
              [-180, -90],
              [-180, 90],
            ],
          ],
          type: "Polygon",
        },
        properties: {},
        type: "Feature",
      };
      console.log(require("./shanxi.json"), "require");
      var PolygonModal = turf.mask(
        require("./shanxi.json").features[0],
        polygon
      );
      console.log(PolygonModal, "PolygonModal");
      map.addLayer({
        id: "PolygonModal",
        type: "fill",
        source: {
          type: "geojson",
          data: PolygonModal,
        },
        layout: {},
        paint: {
          "fill-color": "#000",
          "fill-opacity": 0.5,
        },
      });
      var bbox = turf.bbox(require("./shanxi.json").features[0]);
      var bboxPolygon = turf.bboxPolygon(bbox);
      let mapbounds = [
        [
          bboxPolygon.geometry.coordinates[0][0][0],
          bboxPolygon.geometry.coordinates[0][0][1],
        ],
        [
          bboxPolygon.geometry.coordinates[0][2][0],
          bboxPolygon.geometry.coordinates[0][2][1],
        ],
      ];
      map.fitBounds(mapbounds, { padding: 20 });
    },

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

侧耳倾听...

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值