0.0.3 • Published 6 years ago

leaflet-event-forwarder v0.0.3

Weekly downloads
112
License
Apache-2.0
Repository
github
Last release
6 years ago

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

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago

0.0.0

6 years ago