Socket
Socket
Sign inDemoInstall

leaflet-event-forwarder

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

leaflet-event-forwarder

Catches unhandled canvas layer events and re-dispatches them to the next layer in the stack


Version published
Maintainers
1
Created
Source

leaflet-event-forwarder NPM version NPM Downloads

A plugin for leaflet v1^.

Catches unhandled canvas layer events and re-dispatches them to the next pane in a container.

Example use:

const map = L.map("map");
// prepare a container to hold our z stackable layer panes
const container = map.createPane('stack-container');

const myEventForwarder = new L.eventForwarder({
  // ref to leaflet map
  map: map,
  // events to forward
  events: {
    click: true,
    mousemove: true
  },
  // throttle options for mousemove events (same as underscore.js)
  throttleMs: 100,
  throttleOptions: {
    leading: true,
    trailing: false
  }
});

// enable event forwarding
myEventForwarder.enable();

// disable event forwarding
myEventForwarder.disable();

Shouts outs

License

Apache 2

Keywords

FAQs

Package last updated on 16 Sep 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc