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

@canterbury-air-patrol/leaflet-dialog

v1.1.2

Published

Resizable, movable dialog window for Leaflet

Downloads

96

Readme

Leaflet.Dialog

A dialog modal window that is resizable and positionable on the map.

Check out the Demo Here

Installation:

# Bower:
bower install Leaflet.Dialog
# NPM:
npm install leaflet-dialog

Adding a dialog box:

// After you've set up your map and layers, add the modal window by running:
var dialog = L.control.dialog(options)
              .setContent("<p>Hello! Welcome to your nice new dialog box!</p>")
              .addTo(map);

Working with the dialog box:

Close the window:

dialog.close();

Open the window:

dialog.open();

Destroy the window:

dialog.destroy();

Reset the contents:

dialog.setContent("<p>Here's some new content!</p>");

Options:

| Property | Type | Default | Description | --- | --- | --- | --- | size | [Array][width, height] | [ 300, 300 ] | An array of the starting width and height values (in pixels). | minSize | [Array][width, height] | [ 100, 100 ] | An array with the minimum resize width and height (in pixels). | maxSize | [Array][width, height] | [ 350, 350 ] | An array with the maximum resize width and height (in pixels). | anchor | [Array][top, left] | [ 250, 250 ] | The starting point anchor location (from the upper left) in pixels. | position | [String] | 'topleft' | The leaflet control div to place the modal inside, as a starting reference point. | initOpen | [Boolean] | true | Whether or not to initialize in an open state. | title | [String] |null | Title bar HTML | iconClass | [Object] |{grabber: "fa fa-arrows", close: "fa fa-times", resize: "fa fa-arrows-h fa-rotate-45", collapse: "fa caret-down", expand: "fa caret-up"} | Classes to be used as icons for grabber, close, resize, expand/collapse

Methods:

| Method | Returns | Example | Description | --- | --- | --- | --- | open() | this | dialog.open(); | Opens the dialog window. | close() | this | dialog.close(); | Closes the dialog window. | destroy() | this | dialog.destroy(); | Removes the dialog box from the window. | setLocation( [Array][top, left] anchor location ) | this | dialog.setLocation( [ 15, 15 ] ); | Move the dialog box to the specified pixel location ( Relative to the 'position' option ) | setSize( [Array][width, height] size ) | this | dialog.setSize( [ 150, 150 ] ); | Resize the dialog window to the specified width and height. | lock() | this | dialog.lock(); | Hides all visible dialog window controls. | unlock() | this | dialog.unlock(); | Re-instates all dialog window controls. | freeze() | this | dialog.freeze(); | Hides all visible dialog window movement/sizing controls. | unfreeze() | this | dialog.unfreeze(); | Re-instates all dialog window movement/sizing controls. | hideClose() | this | dialog.hideClose(); | Hides the closing 'x' | showClose() | this | dialog.showClose(); | Shows the closing 'x' | hideResize() | this | dialog.hideResize(); | Hides the resizing symbol | showResize() | this | dialog.showResize(); | Shows the resizing symbol

Events:

| Event | Data | Description | --- | --- | --- | dialog:opened | this | Fired when open() is called. | dialog:closed | this | Fired when close() is called or when the 'x' is clicked. | dialog:destroyed | this | Fired when destroy() is called. | dialog:locked | this | Fired when lock() is called. | dialog:unlocked | this | Fired when unlock() is called. | dialog:frozen | this | Fired when freeze() is called. | dialog:unfrozen | this | Fired when unfreeze() is called. | dialog:updated | this | Fired when contents are set or when added to the map. | dialog:resizestart | this | Fired when the resize button is clicked. | dialog:resizing | this | Fired continuously as the resize button is dragged. | dialog:resizeend | this | Fired when the resize button click is released. | dialog:movestart | this | Fired when the move button is clicked. | dialog:moving | this | Fired continuously as the move button is dragged. | dialog:moveend | this | Fired when the move button click is released. | dialog:closehidden | this | Fired when hideClose() is called. | dialog:closeshown | this | Fired when the showClose() is called. | dialog:resizehidden | this | Fired when hideResize() is called. | dialog:resizeshown | this | Fired when the showResize() is called.