From 3c99fde45db83b531c41c350ed4d0ac2a3c40c62 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 14:45:13 +0200 Subject: Adding debian version 1.1.0-3. Signed-off-by: Daniel Baumann --- .../leaflet.js/layer/Layer.Interactive.leafdoc | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 debian/missing-sources/leaflet.js/layer/Layer.Interactive.leafdoc (limited to 'debian/missing-sources/leaflet.js/layer/Layer.Interactive.leafdoc') diff --git a/debian/missing-sources/leaflet.js/layer/Layer.Interactive.leafdoc b/debian/missing-sources/leaflet.js/layer/Layer.Interactive.leafdoc new file mode 100644 index 0000000..11ed5a8 --- /dev/null +++ b/debian/missing-sources/leaflet.js/layer/Layer.Interactive.leafdoc @@ -0,0 +1,39 @@ +@class Interactive layer +@inherits Layer + +Some `Layer`s can be made interactive - when the user interacts +with such a layer, mouse events like `click` and `mouseover` can be handled. +Use the [event handling methods](#evented-method) to handle these events. + +@option interactive: Boolean = true +If `false`, the layer will not emit mouse events and will act as a part of the underlying map. + +@option bubblingMouseEvents: Boolean = true +When `true`, a mouse event on this layer will trigger the same event on the map +(unless [`L.DomEvent.stopPropagation`](#domevent-stoppropagation) is used). + +@section Mouse events + +@event click: MouseEvent +Fired when the user clicks (or taps) the layer. + +@event dblclick: MouseEvent +Fired when the user double-clicks (or double-taps) the layer. + +@event mousedown: MouseEvent +Fired when the user pushes the mouse button on the layer. + +@event mouseup: MouseEvent +Fired when the user releases the mouse button pushed on the layer. + +@event mouseover: MouseEvent +Fired when the mouse enters the layer. + +@event mouseout: MouseEvent +Fired when the mouse leaves the layer. + +@event contextmenu: MouseEvent +Fired when the user right-clicks on the layer, prevents +default browser context menu from showing if there are listeners on +this event. Also fired on mobile when the user holds a single touch +for a second (also called long press). -- cgit v1.2.3