npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

leaflet-layergroup-conditional

v1.0.1

Published

An extension af Leaflet.LayerGroup with conditional layers.

Downloads

34

Readme

Leaflet.LayerGroup.Conditional

An extension of Leaflet.LayerGroup that allows you to add layers with conditions on when they should be shown.

A typical use is to render different layers depending on zoom level - e.g. showing a heatmap on low zoom levels and marker on higher zoom levels.

Requirements

Should work with Leaflet ^1.0.0.

Has been tested with Leaflet 1.7.1 and 1.9.2

Demos

Usage

Quick guide

HTML

<!-- after Leaflet script -->
<script src="leaflet.layergroup.conditional.js"></script>

JavaScript

    // Create map
    var map = L.map("map");

    // Create a few layers. Could also be LayerGroups. Do not add to map.
    var layer1 = L.circle([55.6867243, 12.5700724], {color: "blue"});
    var layer2 = L.marker([55.6867243, 12.5700724]);

    // Create conditional layergroup.
    // Add layers to it with separate conditions.
    // Add the layer group to the map.
    var layerGroup = L.layerGroup.conditional()
                      .addConditionalLayer((level) => level < 12, layer1)
                      .addConditionalLayer((level) => level >= 12, layer2)
                      .addTo(map);
    
    // Set up a zoom handler to update conditional layers when the user zooms.
    var zoomHandler = function(event) {
       var zoomLevel = map.getZoom();
       layerGroup.updateConditionalLayers(zoomLevel);
    }
    map.on('zoomend', zoomHandler);


    // Set initial state of conditional layers
    layerGroup.updateConditionalLayers(map.getZoom());

Installing the sub-plugin

Local copy

  1. Download the leaflet.layergroup.conditional.js file from the latest release.
  2. Place the file alongside your page.
  3. Add the script tag to your page after Leaflet script.

npm

  1. Add this package to your project:

    npm install leaflet-layergroup-conditional --save
  2. Add script tag to your page after Leaflet script:

    <!-- After Leaflet script -->
    <script src="node_modules/leaflet-layergroup-conditional/leaflet.layergroup.conditional.js"></script>

API Reference

Creation

| Factory | Description | | :-------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------- | | L.layerGroup.conditional(<Layer[]> layers?, options?) | Create a conditional layer group, optionally given an initial set of fixed layers and an options object. |

Methods

Methods are the same as those of LayerGroup, plus

| Method | Returns | Description | | :----------------------------------------------------------------------- | :--------- | :------------------------------------------------------------------------------------------------------------------------------- | | addConditionalLayer(<(Object)=>bool> function, <Layer> layer) | this | Adds a conditional layer. The function is evaluated whenever updateConditionalLayers() are called. Optionally, updateConditionalLayers() can be called with a single argument which is then passed on to the function of each conditional layer. | | removeConditionalLayer(<Layer> layer) | this | Removes a conditional layer. | | removeConditionalLayer(<Number> id) | this | Removes a conditional layer with the specified internal ID. | | hasConditionalLayer(<Layer> layer) | bool | Returns true if the given layer is currently added to the group with a condition, regardless of whether it is currently active | | hasConditionalLayer(<Number> id) | bool | Returns true if a layer with the given internal ID is currently added to the group with a condition, regardless of whether it is currently active | | isConditionalLayerActive(<Layer> layer) | bool | Returns true if the given layer is currently added to the group with a condition, and is currently active | | isConditionalLayerActive(<Number> id) | bool | Returns true if a layer with the given internal ID is currently added to the group with a condition, and is currently active | | clearConditionalLayers() | this | Removes all conditional layers from the group | | getConditionalLayers() | Layer[] | Returns an array of conditional layers in the group, regardless of whether they are currently active. | | updateConditionalLayers(<Object> arg?) | this | Update the status of all conditional layers, passing an optional argument to each layer's condition function. |

License

GNU GPLv3 or later