• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..15-Dec-2021-

.github/H15-Dec-2021-1913

bin/H03-May-2022-6851

build/H03-May-2022-59,70259,701

changelog/H15-Dec-2021-5,0944,231

config/H15-Dec-2021-2,4912,205

css/H15-Dec-2021-262250

doc/H15-Dec-2021-1,6621,219

examples/H03-May-2022-79,77379,592

externs/H03-May-2022-12199

package/H15-Dec-2021-8064

src/H15-Dec-2021-894730

tasks/H03-May-2022-322185

test/H03-May-2022-15,77515,661

transforms/H03-May-2022-76

.bower.jsonH A D15-Dec-2021373 1414

.editorconfigH A D15-Dec-2021251 1814

.eslintignoreH A D15-Dec-202162 43

.gitignoreH A D15-Dec-202141 54

.npmignoreH A D15-Dec-20218 21

.travis.ymlH A D15-Dec-2021553 2322

CONTRIBUTING.mdH A D15-Dec-20218.2 KiB206129

DEVELOPING.mdH A D15-Dec-20214.9 KiB13782

LICENSE.mdH A D15-Dec-20211.5 KiB2721

MakefileH A D15-Dec-20219.6 KiB281230

README.mdH A D15-Dec-20212.8 KiB4325

package.jsonH A D15-Dec-20214.1 KiB155154

README.md

1# OpenLayers
2
3[![Travis CI Status](https://secure.travis-ci.org/openlayers/openlayers.svg)](http://travis-ci.org/#!/openlayers/openlayers)
4[![Greenkeeper badge](https://badges.greenkeeper.io/openlayers/openlayers.svg)](https://greenkeeper.io/)
5[![Coverage Status](https://coveralls.io/repos/github/openlayers/openlayers/badge.svg?branch=master)](https://coveralls.io/github/openlayers/openlayers?branch=master)
6[![OSGeo Project](https://img.shields.io/badge/OSGeo-Project-brightgreen.svg)](http://osgeo.org/)
7
8[OpenLayers](https://openlayers.org/) is a high-performance, feature-packed library for creating interactive maps on the web. It can display map tiles, vector data and markers loaded from any source on any web page. OpenLayers has been developed to further the use of geographic information of all kinds. It is completely free, Open Source JavaScript, released under the 2-clause BSD License (also known as the FreeBSD).
9
10## Getting Started
11
12Use one of the following methods to use OpenLayers in your project:
13
14* For use with webpack, Rollup, Browserify, or other module bundlers, install the [`ol` package](https://www.npmjs.com/package/ol):
15    ```
16    npm install ol
17    ```
18
19* If you just want to add a `<script>` tag to test things out, you can link directly to one of the full builds from [cdnjs](https://cdnjs.com/libraries/openlayers) (not recommended for production)
20
21* For use with Closure Library (rare), install the [`openlayers` package](https://npmjs.com/package/openlayers) and read the [tutorial](http://openlayers.org/en/latest/doc/tutorials/closure.html).
22
23## Supported Browsers
24
25OpenLayers runs on all modern browsers that support [HTML5](https://html.spec.whatwg.org/multipage/) and [ECMAScript 5](http://www.ecma-international.org/ecma-262/5.1/). This includes Chrome, Firefox, Safari and Edge. For older browsers and platforms like Internet Explorer (down to version 9) and Android 4.x, [polyfills](http://polyfill.io) for `requestAnimationFrame` and `Element.prototype.classList` are required, and using the KML format requires a polyfill for `URL`.
26
27## Documentation
28
29Check out the [hosted examples](https://openlayers.org/en/latest/examples/), the [workshop](https://openlayers.org/workshop/) or the [API documentation](https://openlayers.org/en/latest/apidoc/).
30
31## Bugs
32
33Please use the [GitHub issue tracker](https://github.com/openlayers/openlayers/issues) for all bugs and feature requests. Before creating a new issue, do a quick search to see if the problem has been reported already.
34
35## Contributing
36
37Please see our guide on [contributing](CONTRIBUTING.md) if you're interested in getting involved.
38
39## Community
40
41- Need help? Find it on [Stack Overflow using the tag 'openlayers'](http://stackoverflow.com/questions/tagged/openlayers)
42- Follow [@openlayers](https://twitter.com/openlayers) on Twitter
43