Go to file
2012-02-15 19:26:17 +02:00
build Merged #488 fix from stable, closed #488, allowed smart tabs 2012-02-15 11:03:39 +02:00
debug interpolate URL values from options (instead of urlParams 3rd argument) 2012-02-15 18:23:34 +02:00
dist Added Circle#getBounds, closed #440 2012-02-15 18:54:11 +02:00
lib Try removing closure compiler again 2011-12-09 12:47:27 +02:00
spec fix issue with 180 longs being clamped to -180 2011-12-21 13:22:07 +00:00
src Fixed click event after disabled dragging bug, closed #434 2012-02-15 19:26:17 +02:00
CHANGELOG.md Fixed click event after disabled dragging bug, closed #434 2012-02-15 19:26:17 +02:00
Jakefile.js Update changelog and build 2012-02-13 16:25:57 +02:00
LICENSE fix license whitespace 2011-06-17 01:36:31 +03:00
README.md Removed global switch for installing jshint and uglify-js 2012-02-14 00:58:37 +02:00

Leaflet

Leaflet is a modern, lightweight BSD-licensed JavaScript library for making tile-based interactive maps for both desktop and mobile web browsers, developed by CloudMade to form the core of its next generation JavaScript API.

It is built from the ground up to work efficiently and smoothly on both platforms, utilizing cutting-edge technologies included in HTML5. Its top priorities are usability, performance and small size, A-grade browser support, flexibility and easy to use API. The OOP-based code of the library is designed to be modular, extensible and very easy to understand.

Check out the website for more information: leaflet.cloudmade.com

Contributing to Leaflet

Let's make the best open-source library for maps that can possibly exist!

Contributing is simple: make the changes in your fork, make sure that Leaflet builds successfully (see below) and then create a pull request to Vladimir Agafonkin (Leaflet maintainer). Updates to Leaflet documentation and examples (located in the gh-pages branch) are really appreciated too.

Here's a list of the awesome people that joined us already. Looking forward to your contributions!

Building Leaflet

Leaflet build system is powered by the Node.js platform and Jake, JSHint and UglifyJS libraries, which install easily and work well across all major platforms. Here are the steps to install it:

  1. Download and install Node
  2. Run the following commands in the command line:
npm install -g jake
npm install jshint
npm install uglify-js

Now that you have everything installed, run jake inside the Leaflet directory. This will check Leaflet source files for JavaScript errors and inconsistencies, and then combine and compress it to the dist folder.

To make a custom build of the library with only the things you need, use the build helper (build/build.html) to choose the components (it figures out dependencies for you) and then run the command generated with it.

If you add any new files to the Leaflet source, make sure to also add them to build/deps.js so that the build system knows about them. Happy coding!