Leaflet/download.md
2013-07-25 13:15:13 +03:00

2.9 KiB

layout title
default Download

Download Leaflet

Version Description
Leaflet 0.6.4 Stable version, released on June 26, 2013 and last updated on July 25, 2013.
Leaflet 0.5.1 Previous stable version, released on January 17, 2013 and last updated on February 6, 2013.
Leaflet 0.7-dev In-progress major version, developed on the master branch.

View Changelog

Note that the master version can contain incompatible changes, so please read the changelog carefully when upgrading to it.

Using a Hosted Version of Leaflet

The latest stable release of Leaflet is hosted on a CDN — to start using it straight away, place this in the head section of your HTML code:

<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.css" />
<!--[if lte IE 8]>
    <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.ie.css" />
<![endif]-->

<script src="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.js"></script>

Leaflet Source Code

These download packages above only contain the library itself. If you want to download the full source code, including unit tests, files for debugging, build scripts, etc., you can download it from the GitHub repository.

Building Leaflet from the Source

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

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.

Building a Custom Version of Leaflet

To make a custom build of the library with only the things you need, open build/build.html page of the Leaflet source code contents, choose the components (it figures out dependencies for you) and then run the command generated with it.