美文网首页GIS加油站
mapboxGL中区域掩膜的实现

mapboxGL中区域掩膜的实现

作者: 牛老师讲GIS | 来源:发表于2024-01-09 20:19 被阅读0次

概述

区域掩膜的功能也是比较常见的功能呢,本文分享在mapboxGL中结合canvas如何实现。

效果

动画.gif

实现

1. 创建画布

先创建一个map大小的canvas,设置其大小与样式,并添加到地图画布容器中。

const {width, height} = map.getCanvas()
canvas = document.createElement('canvas');
canvas.width = width;
canvas.height = height;
canvas.style.position = 'absolute';
canvas.style.top = '0px';
canvas.style.left = '0px';
canvas.style.zIndex = '1';
ctx = canvas.getContext('2d');
map.getCanvasContainer().appendChild(canvas);

2.注册move事件

注册地图的move事件,在地图变化的时候更新掩膜。

map.on('move', addMapModal)

3.核心实现

  • 通过map.project实现地理坐标到屏幕坐标的转换;
  • 通过globalCompositeOperation = 'source-out'设置反向裁剪;
function addMapModal() {
  ctx.fillStyle = '#ededed';
  ctx.strokeStyle = '#f00';
  ctx.lineWidth = 3;
  ctx.clearRect(0, 0, canvas.width, canvas.height)
  const coords = modalData.map(coord => {
    const {x, y} = map.project(coord)
    return [x, y]
  })
  
  ctx.beginPath();
  coords.forEach((coord, index) => {
    index === 0 ? ctx.moveTo(coord[0], coord[1]) : ctx.lineTo(coord[0], coord[1])
  })
  ctx.closePath();
  ctx.fill();
  
  ctx.globalCompositeOperation = 'source-out';
  ctx.rect(0, 0, canvas.width, canvas.height)
  ctx.fill();
  ctx.globalCompositeOperation = 'source-over';
  ctx.beginPath();
  coords.forEach((coord, index) => {
    index === 0 ? ctx.moveTo(coord[0], coord[1]) : ctx.lineTo(coord[0], coord[1])
  })
  ctx.closePath();
  ctx.stroke()
}

相关文章

  • OpenCV:四、图像的基础操作

    前言 在上一章中描述了如何使用自己实现掩膜运算以及调用cv :: filter2D函数对图像进行掩膜运算矩阵的掩膜...

  • GEEMODIS数据质量波段应用

    MODIS质量控制数据应用 主要功能 使用MODIS的QA波段来进行云区掩膜,深海区域掩膜 代码 步骤分析 定义函...

  • 掩膜

    通过使用黑白二值图像将对应于黑色部分的原始图像的像素改变为黑色的操作被称为掩膜。 举个例子,比如说要提取蓝色部分,...

  • QR码设计(5)之mask

    转载请注明出处 1.1掩膜版的种类 QR码的掩膜版一共8种。他是在数据字和纠错字都在矩阵中填充完后,选择掩膜版类型...

  • Opencv中的掩膜mask

    搞了很久一会儿,终于初步的明白了mask是个什么东东,简单的说,就是一个控制原图哪里需要进行对应改变的标志图,这么...

  • Python中ArcPy读取Excel表格长时间序列数据、批量反

      本文介绍基于Python中ArcPy模块,实现Excel数据读取并导入图层,同时进行IDW插值与批量掩膜的方法...

  • 什么是掩膜(又叫掩码),它的作用是什么

    什么是掩膜(mask) 数字图像处理中的掩膜的概念是借鉴于PCB制版的过程,在半导体制造中,许多芯片工艺步骤采用光...

  • 图像掩膜

    知识点 unsigned char 整数范围为0到255Mat.ptr (row) --返回row行的首地址,用法...

  • mapboxGL中多图标加载的实现

    概述 mapboxGl中多图标的实现可以在style中指定sprite来实现,但是在实际使用的时候会出现sprit...

  • 004-OpenCV笔记-掩膜mask

    OpenCV 掩膜 用选定的图像、图形或物体,对处理的图像(全部或局部)进行遮挡,来控制图像处理的区域或处理过程。...

网友评论

    本文标题:mapboxGL中区域掩膜的实现

    本文链接:https://www.haomeiwen.com/subject/dndandtx.html