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-contextmenu

v1.4.0

Published

A context menu for Leaflet

Downloads

29,600

Readme

#Leaflet.contextmenu

CDNJS npm Bower

A context menu for Leaflet. See the demo.

Now supporting Leaflet 1.0

##Usage The context menu is implemented as a map interaction handler. To use the plugin include the script and enable using the map contextmenu option.

var map = L.map('map', {
	contextmenu: true,
    contextmenuWidth: 140,
	contextmenuItems: [{
	    text: 'Show coordinates',
	    callback: showCoordinates
	}, {
	    text: 'Center map here',
	    callback: centerMap
	}, '-', {
	    text: 'Zoom in',
	    icon: 'images/zoom-in.png',
	    callback: zoomIn
	}, {
	    text: 'Zoom out',
	    icon: 'images/zoom-out.png',
	    callback: zoomOut
	}]
});


function showCoordinates (e) {
	alert(e.latlng);
}

function centerMap (e) {
	map.panTo(e.latlng);
}

function zoomIn (e) {
	map.zoomIn();
}

function zoomOut (e) {
	map.zoomOut();
}

The context menu mixin allows markers and vector features to extend the map context menu with their own menu items. In addition to the menu item options available for the map context menu marker's also accept an index option that specifies where the menu item should be inserted relative to the existing map menu items.

L.marker(ll, {
    contextmenu: true,
    contextmenuItems: [{
        text: 'Marker item',
        index: 0
    }, {
        separator: true,
        index: 1
    }]
}).addTo(map);

###All Options ####Map Context Menu Options

| Option | Type | Default | Description | --- | --- | --- | --- | contextmenu | Bool | false | Enables the context menu. | contextmenuWidth | Number | undefined | If defined sets the context menu width, if undefined the menu will be sized by the maximum width of its menu items. | contextmenuAnchor | L.Point/Array | undefined | An offset applied to the click point to control the context menu position. | contextmenuItems | Array | [] | Specification for the context menu items. See following options for individual menu items. A separator may also be added with a dash character '-'.

####Menu Item Options

| Option | Type | Default | Description | --- | --- | --- | --- | text | String | undefined | The label to use for the menu item (required). | icon | String | undefined | Url for a 16x16px icon to display to the left of the label. | retinaIcon | String | undefined | Url for a retina-sized version (32x32px) icon to display to the left of the label. | iconCls | String | undefined | A CSS class which sets the background image for the icon (exclusive of the icon option). | retinaIconCls | String | undefined | A CSS class which sets the background image for a retina version of the icon (exclusive of the retinaIcon option). | callback | Function | undefined | A callback function to be invoked when the menu item is clicked. The callback is passed an object with properties identifying the location the menu was opened at: latlng, layerPoint and containerPoint. | context | Object | The map | The scope the callback will be executed in. | disabled | Bool | false | If true the menu item will initially be in a disabled state and will not respond to click events. | separator | Bool | undefined | If true a separator will be created instead of a menu item. | hideOnSelect | Bool | true | If true the context menu will be automatically hidden when a menu item is selected

####Mixin Options

| Option | Type | Default | Description | --- | --- | --- | --- | contextmenu | Bool | false | Enables the context menu. | contextmenuItems | Array | [] | Specification for the context menu items. | contextmenuInheritItems | Bool | true | If true (the default) the feature menu items are displayed in addition to the map's context menu items.

###Methods

A reference to the map's context menu can be obtained through the map variable e.g. map.contextmenu.

showAt(L.Point/L.LatLng, [data])

Opens the map's context menu at the specified point. data is an optional hash of key/value pairs that will be included on the map's contextmenu.show event.

hide()

Hides the map's context menu if showing.

addItem(options)

Adds a new menu item to the context menu.

insertItem(options, index)

Adds a new menu item to the context menu at the specified index. If the index is invalid the menu item will be appended to the menu.

removeItem(HTMLElement/index)

Removes a menu item.

removeAllItems()

Removes all menu items.

setDisabled(HTMLElement/index, disabled)

Set's the disabled state of a menu item.

isVisible()

Returns true if the context menu is currently visible.

###Mixin Methods The following methods are available on supported layer types when using the context menu mixin.

bindContextMenu(contextMenuOptions)

Binds a context menu to the feature the method is called on.

unbindContextMenu()

Unbinds the context menu previously bound to the feature with the bindContextMenu() method.

###Events

The following events are triggered on the map:

####contextmenu.show

Fired when the context menu is shown. If the context menu was shown in response to a map contextmenu event the event object will extend MouseEvent.

| Property | Type | Description | --- | --- | --- | contextmenu | Map.ContextMenu | The context menu. | relatedTarget | L.Marker/L.Path/undefined | If the context menu was opened for a map feature this property will contain a reference to that feature.

####contextmenu.hide

Fired when the context menu is hidden.

| Property | Type | Description | --- | --- | --- | contextmenu | Map.ContextMenu | The context menu.

####contextmenu.select

Fired when a context menu item is selected.

| Property | Type | Description | --- | --- | --- | contextmenu | Map.ContextMenu | The context menu. | el | HTMLElement | The context menu item element that was selected.

####contextmenu.additem

Fired when a menu item is added to the context menu.

| Property | Type | Description | --- | --- | --- | contextmenu | Map.ContextMenu | The context menu. | el | HTMLElement | The context menu item element. | index | Number | The index at which the menu item was added.

####contextmenu.removeitem

Fired when a menu item is removed from the context menu.

| Property | Type | Description | --- | --- | --- | contextmenu | Map.ContextMenu | The context menu. | el | HTMLElement | The context menu item element.

####contextmenu.enableitem

Fired when a menu item is enabled.

| Property | Type | Description | --- | --- | --- | contextmenu | Map.ContextMenu | The context menu. | el | HTMLElement | The context menu item element.

####contextmenu.disableitem

Fired when a menu item is disabled.

| Property | Type | Description | --- | --- | --- | contextmenu | Map.ContextMenu | The context menu. | el | HTMLElement | The context menu item element.

##Development

Edit files in src/. To build the files in dist/, run:

npm install
npm run build

##License This software is released under the MIT licence. Icons used in the example are from http://glyphicons.com.