pass two
This commit is contained in:
parent
925d764b4c
commit
d7e0cb151a
@ -9,6 +9,9 @@ body {
|
|||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 1.4em 0;
|
||||||
|
}
|
||||||
|
|
||||||
.container code, .container pre code {
|
.container code, .container pre code {
|
||||||
font-family: "Consolas", "Menlo", "Lucida Console", "Courier New", monospace;
|
font-family: "Consolas", "Menlo", "Lucida Console", "Courier New", monospace;
|
||||||
@ -56,6 +59,10 @@ h2 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.p-example {
|
||||||
|
margin-top: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
.container .map {
|
.container .map {
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
}
|
}
|
||||||
|
29
index-v2.md
29
index-v2.md
@ -2,8 +2,7 @@
|
|||||||
layout: v2
|
layout: v2
|
||||||
---
|
---
|
||||||
|
|
||||||
Leaflet is the leading open-source JavaScript library for mobile-friendly interactive maps.
|
Leaflet is the leading open-source JavaScript library for mobile-friendly interactive maps, used by the world's biggest websites.
|
||||||
It is developed by [Vladimir Agafonkin][] with a team of dedicated [contributors][].
|
|
||||||
Weighing just about <abbr title="33 KB gzipped — that's 123 KB minified and 218 KB in the source form, with 10 KB of CSS (2 KB gzipped) and 11 KB of images.">33 KB of JS</abbr>,
|
Weighing just about <abbr title="33 KB gzipped — that's 123 KB minified and 218 KB in the source form, with 10 KB of CSS (2 KB gzipped) and 11 KB of images.">33 KB of JS</abbr>,
|
||||||
it has all the [features][] most developers ever need for online maps.
|
it has all the [features][] most developers ever need for online maps.
|
||||||
|
|
||||||
@ -15,22 +14,22 @@ and a simple, readable [source code][] that is a joy to [contribute][] to.
|
|||||||
|
|
||||||
## Basic Example
|
## Basic Example
|
||||||
|
|
||||||
|
Let's create a map with <abbr title="Here we use OpenStreetMap tiles, but Leaflet doesn't force you to — use whatever works for you, it's open source!">tiles of our choice</abbr> and add a marker with some text in a popup:
|
||||||
|
|
||||||
<div id="map" class="map" style="height: 300px"></div>
|
<div id="map" class="map" style="height: 300px"></div>
|
||||||
|
|
||||||
In this basic example, we create a map with <abbr title="Here we use OpenStreetMap tiles, but Leaflet doesn't force you to — use whatever works for you, it's open source!">tiles of our choice</abbr>, add a marker and bind a popup with some text to it:
|
<div id="map"></div>
|
||||||
|
<script>
|
||||||
|
var map = L.map('map').setView([51.505, -0.09], 13);
|
||||||
|
|
||||||
// create a map in the "map" div, set the view to a given place and zoom
|
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
|
||||||
var map = L.map('map').setView([51.505, -0.09], 13);
|
attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
|
||||||
|
}).addTo(map);
|
||||||
|
|
||||||
// add OpenStreetMap tile layer
|
L.marker([51.5, -0.09]).addTo(map)
|
||||||
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
|
.bindPopup('A pretty CSS3 popup. <br> Easily customizable.')
|
||||||
attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
|
.openPopup();
|
||||||
}).addTo(map);
|
</script>
|
||||||
|
|
||||||
// add a marker, attach some popup content to it and show it
|
|
||||||
L.marker([51.5, -0.09]).addTo(map)
|
|
||||||
.bindPopup('A pretty CSS3 popup. <br> Easily customizable.')
|
|
||||||
.openPopup();
|
|
||||||
|
|
||||||
Learn more with the [quick start guide](examples/quick-start.html), check out [other tutorials](examples.html), or head straight to the [API documentation](reference.html). <br>
|
Learn more with the [quick start guide](examples/quick-start.html), check out [other tutorials](examples.html), or head straight to the [API documentation](reference.html). <br>
|
||||||
If you have any questions, take a look at the [FAQ](https://github.com/Leaflet/Leaflet/blob/master/FAQ.md) first.
|
If you have any questions, take a look at the [FAQ](https://github.com/Leaflet/Leaflet/blob/master/FAQ.md) first.
|
||||||
@ -49,6 +48,8 @@ and spreading the word about Leaflet among your colleagues and friends.
|
|||||||
|
|
||||||
Check out the [contribution guide][contribute] for more information on getting involved with Leaflet development.
|
Check out the [contribution guide][contribute] for more information on getting involved with Leaflet development.
|
||||||
|
|
||||||
|
Leaflet is developed by [Vladimir Agafonkin][] with a team of dedicated [contributors][].
|
||||||
|
|
||||||
[Vladimir Agafonkin]: http://agafonkin.com/en
|
[Vladimir Agafonkin]: http://agafonkin.com/en
|
||||||
[contributors]: https://github.com/Leaflet/Leaflet/graphs/contributors
|
[contributors]: https://github.com/Leaflet/Leaflet/graphs/contributors
|
||||||
[features]: features.html
|
[features]: features.html
|
||||||
|
Loading…
Reference in New Issue
Block a user