--- layout: default --- Leaflet is a modern open-source JavaScript library for mobile-friendly interactive maps. It is developed by [Vladimir Agafonkin][] with a team of dedicated [contributors][]. Weighing just about 33 KB of JS, it has all the [features][] most developers ever need for online maps. Leaflet is designed with _simplicity_, _performance_ and _usability_ in mind. It works efficiently across all major desktop and mobile platforms out of the box, taking advantage of HTML5 and CSS3 on modern browsers while still being accessible on older ones. It can be extended with a huge amount of [plugins][], has a beautiful, easy to use and [well-documented API][] and a simple, readable [source code][] that is a joy to [contribute][] to. {: .usedby} Used by: [Flickr](http://flickr.com/map) [foursquare](https://foursquare.com/) [Pinterest](http://pinterest.com) [craigslist](http://t.co/V4EiURIA) [Data.gov](http://data.gov) [IGN](http://www.ign.com/wikis/the-elder-scrolls-5-skyrim/interactive-maps/Skyrim) [Wikimedia](http://blog.wikimedia.org/2012/04/05/new-wikipedia-app-for-ios-and-an-update-for-our-android-app/) [OSM](http://openstreetmap.org) [Meetup](http://www.meetup.com/) [WSJ](http://projects.wsj.com/campaign2012/maps/) [Mapbox](http://mapbox.com) [CartoDB](http://cartodb.com) [GIS Cloud](http://www.giscloud.com/) ...
In this basic example, we create a map with tiles of our choice, add a marker and bind a popup with some text to it: // create a map in the "map" div, set the view to a given place and zoom var map = L.map('map').setView([51.505, -0.09], 13); // add an OpenStreetMap tile layer L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', { attribution: '© OpenStreetMap contributors' }).addTo(map); // add a marker in the given location, attach some popup content to it and open the popup L.marker([51.5, -0.09]).addTo(map) .bindPopup('A pretty CSS3 popup.
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).
If you have any questions, take a look at the [FAQ](https://github.com/Leaflet/Leaflet/blob/master/FAQ.md) first. ## Getting Involved Third-party patches are absolutely essential on our quest to create the best mapping library that will ever exist. However, they're not the only way to get involved with the development of Leaflet. You can help the project tremendously by discovering and [reporting bugs][], [improving documentation][], helping others on the [Leaflet forum](https://groups.google.com/forum/#!forum/leaflet-js) and [GitHub issues](https://github.com/Leaflet/Leaflet/issues), showing your support for your favorite feature suggestions on [Leaflet UserVoice page](http://leaflet.uservoice.com), tweeting to [@LeafletJS](http://twitter.com/LeafletJS) 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. [Vladimir Agafonkin]: http://agafonkin.com/en [contributors]: https://github.com/Leaflet/Leaflet/graphs/contributors [features]: features.html [plugins]: plugins.html [well-documented API]: reference.html "Leaflet API reference" [source code]: https://github.com/Leaflet/Leaflet "Leaflet GitHub repository" [hosted on GitHub]: http://github.com/Leaflet/Leaflet [contribute]: https://github.com/Leaflet/Leaflet/blob/master/CONTRIBUTING.md "A guide to contributing to Leaflet" [reporting bugs]: https://github.com/Leaflet/Leaflet/blob/master/CONTRIBUTING.md#reporting-bugs [improving documentation]: https://github.com/Leaflet/Leaflet/blob/master/CONTRIBUTING.md#improving-documentation [@mourner]: http://github.com/mourner [GitHub issues page]: http://github.com/Leaflet/Leaflet/issues [Leaflet UserVoice page]: http://leaflet.uservoice.com [@LeafletJS]: http://twitter.com/LeafletJS [Leaflet mailing list]: https://groups.google.com/group/leaflet-js