Leaflet/docs/download.md

96 lines
3.8 KiB
Markdown
Raw Normal View History

2012-07-17 01:21:00 +08:00
---
2014-04-23 05:48:35 +08:00
layout: v2
2012-07-17 01:21:00 +08:00
title: Download
2015-07-01 00:16:31 +08:00
bodyclass: download-page
2012-07-17 01:21:00 +08:00
---
2012-07-24 06:41:55 +08:00
## Download Leaflet
2012-07-17 01:21:00 +08:00
2012-07-25 21:24:11 +08:00
<table>
<tr>
<th>Version</th>
<th>Description</th>
</tr>
2012-07-26 19:53:24 +08:00
<tr>
<td><a href="http://cdn.leafletjs.com/leaflet/v1.0.3/leaflet.zip">Leaflet 1.0.3</a></td>
<td>Stable version, released on January 23, 2017.</td>
</tr>
2012-07-25 21:24:11 +08:00
<tr>
<td><a href="https://leafletjs-cdn.s3.amazonaws.com/content/leaflet/master/leaflet.zip">Leaflet 1.1-dev</a></td>
<td>In-progress version, developed on the <code>master</code> branch.</td>
2015-07-15 19:00:13 +08:00
</tr>
2015-07-29 00:49:39 +08:00
<tr>
<td class="width100"><a href="http://cdn.leafletjs.com/leaflet/v0.7.7/leaflet.zip">Leaflet 0.7.7</a></td>
<td>Legacy version, released on November 18, 2013 and last updated on October 26, 2015.</td>
2015-07-29 00:49:39 +08:00
</tr>
2012-07-25 21:24:11 +08:00
</table>
2012-07-17 01:21:00 +08:00
[View Changelog](https://github.com/Leaflet/Leaflet/blob/master/CHANGELOG.md)
2012-07-17 01:21:00 +08:00
2013-11-16 01:18:22 +08:00
Note that the master version can contain incompatible changes,
so please read the changelog carefully when upgrading to it.
2012-07-25 21:24:11 +08:00
2012-07-18 21:41:48 +08:00
### Using a Hosted Version of Leaflet
2012-07-17 01:21:00 +08:00
2013-11-16 01:18:22 +08:00
The latest stable Leaflet release is hosted on a CDN &mdash; to start using
it straight away, place this in the `head` of your HTML code:
2012-07-17 01:21:00 +08:00
<link rel="stylesheet" href="https://unpkg.com/leaflet@{{ site.latest_leaflet_version}}/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet@{{ site.latest_leaflet_version}}/dist/leaflet.js"></script>
2016-04-18 16:38:04 +08:00
To avoid potential security problems, we recommend and encourage enabling
[subresource integrity](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity)
when using Leaflet from a CDN:
<link rel="stylesheet" href="https://unpkg.com/leaflet@{{ site.latest_leaflet_version}}/dist/leaflet.css"
integrity="{{site.integrity_hash_css}}"
crossorigin=""/>
<script src="https://unpkg.com/leaflet@{{ site.latest_leaflet_version}}/dist/leaflet.js"
integrity="{{site.integrity_hash_uglified}}"
crossorigin=""></script>
### Using a Downloaded Version of Leaflet
Inside the archives downloaded from the above links, you will see four things:
- `leaflet.js` - This is the minified Leaflet JavaScript code.
- `leaflet-src.js` - This is the readable, unminified Leaflet JavaScript, which is sometimes helpful for debugging. <small>(The integrity hash for this file is <nobr><tt>{{site.integrity_hash_source}}</tt></nobr>)</small>
- `leaflet.css` - This is the stylesheet for Leaflet.
- `images` - This is a folder that contains images referenced by `leaflet.css`. It must be in the same directory as `leaflet.css`.
Unzip the downloaded archive to your website's directory and add this to the `head` of your HTML code:
<link rel="stylesheet" href="/path/to/leaflet.css" />
<script src="/path/to/leaflet.js"></script>
### Using a JavaScript package manager
If you use the [`npm` package manager](https://www.npmjs.com/), you can fetch a local copy of Leaflet by running:
npm install leaflet
You will find a copy of the Leaflet release files in `node_modules/leaflet/dist`.
### Leaflet Source Code
2013-11-16 01:18:22 +08:00
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 <a href="https://github.com/Leaflet/Leaflet/releases">download it</a>
from the <a href="https://github.com/Leaflet/Leaflet">GitHub repository</a>.
2012-07-25 18:15:33 +08:00
### Building Leaflet from the Source
2013-11-16 01:18:22 +08:00
Leaflet build system is powered by the [Node.js](http://nodejs.org) platform,
which installs easily and works well across all major platforms.
Here are the steps to set it up:
2012-07-25 18:15:33 +08:00
1. [Download and install Node](http://nodejs.org)
2. Run the following commands in the command line:
2015-07-01 18:11:12 +08:00
<pre><code>npm install -g jake
2013-06-26 21:13:19 +08:00
npm install</code></pre>
2012-07-25 18:15:33 +08:00
2013-11-16 01:18:22 +08:00
Now that you have everything installed, run `jake build` inside the Leaflet directory.
This will combine and compress the Leaflet source files, saving the build to the `dist` folder.
2012-07-25 18:15:33 +08:00