
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
leaflet-groupedlayercontrol
Advanced tools
A Leaflet layer control with support for grouping overlays together
Leaflet layer control with support for grouping overlays together. Also supports making groups exclusive (radio instead of checkbox).

Include the compressed JavaScript and CSS files located in the /dist folder.
This project is also available via bower and jspm:
bower install leaflet-groupedlayercontrol
Add groupings to your overlay layers object, and swap out the default layer control with the new one.
var groupedOverlays = {
"Landmarks": {
"Motorways": motorways,
"Cities": cities
},
"Points of Interest": {
"Restaurants": restaurants
}
};
L.control.groupedLayers(baseLayers, groupedOverlays).addTo(map);
For added functionality, pass options when creating the layer control.
var options = {
// Make the "Landmarks" group exclusive (use radio inputs)
exclusiveGroups: ["Landmarks"],
// Show a checkbox next to non-exclusive group labels for toggling all
groupCheckboxes: true
};
L.control.groupedLayers(baseLayers, groupedOverlays, options).addTo(map);

Adding a layer individually works similarly to the default layer control, except that you can also specify a group name, along with the layer and layer name.
layerControl.addOverlay(cities, "Cities", "Landmarks");
This plugin only affects how the layers are displayed in the layer control, and not how they are rendered or layered on the map.
Grouping base layers is not currently supported, but adding exclusive layer groups is. Layers in an exclusive layer group render as radio inputs.
Leaflet.groupedlayercontrol is free software, and may be redistributed under the MIT-LICENSE.
FAQs
A Leaflet layer control with support for grouping overlays together
The npm package leaflet-groupedlayercontrol receives a total of 3,606 weekly downloads. As such, leaflet-groupedlayercontrol popularity was classified as popular.
We found that leaflet-groupedlayercontrol 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
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.