
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
leaflet-maskcanvas
Advanced tools
A leaflet canvas layer for displaying large coverage data sets.
Features:
Check out the demo at http://domoritz.github.com/vbb-coverage/.
<script src="QuadTree.js"></script>
<script src="L.TileLayer.MaskCanvas.js"></script>
You can also use the following package managers
L.TileLayer.maskCanvas();
layer.setData(data);
map.addLayer(layer);
The data format is a simple array of [lat, lng] pairs. For example [[51.50,-0.28],[51.51,-0.07],[51.51,-0.07],[51.54,-0.29]]. I recommend that you load the data set asynchronously in order to keep the page responsive. Once the data is loaded, you can add it to the layer and display it.
The MaskCanvas layer supports all Leaflet canvas layer options which can be passed to L.TileLayer.maskCanvas. You probably want to set the layer opacity.
Other possible options:
var layer = L.TileLayer.maskCanvas({
radius: 5, // radius in pixels or in meters (see useAbsoluteRadius)
useAbsoluteRadius: true, // true: r in meters, false: r in pixels
color: '#000', // the color of the layer
opacity: 0.5, // opacity of the not covered area
noMask: false, // true results in normal (filled) circled, instead masked circles
lineColor: '#A00' // color of the circle outline if noMask is true
});
For the upcoming leaflet version there is a slightly changed implementation based on L.GridLayer.
All you need to do, is replace L.TileLayer.maskCanvas with L.GridLayer.maskCanvas.
The new L.GridLayer.maskCanvas for leaflet 1.0 supports the same options as before.
Additionally it allows you to specify different radii for each data point
as you can see in the example at http://loggia.at/leaflet-maskcanvas/demo/index-1.0-dev.html

Run the demo locally with python -m SimpleHTTPServer and then open http://0.0.0.0:8000/demo.
The QuadTree implementation comes from https://github.com/jsmarkus/ExamplesByMesh/tree/master/JavaScript/QuadTree and has been slightly modified. Original Implementation by Mike Chambers.
FAQs
A leaflet canvas layer for displaying large coverage data sets
The npm package leaflet-maskcanvas receives a total of 181 weekly downloads. As such, leaflet-maskcanvas popularity was classified as not popular.
We found that leaflet-maskcanvas demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.