Files
openlayers/package
2017-02-03 17:05:30 -07:00
..
2017-02-03 17:05:30 -07:00
2017-02-03 17:05:30 -07:00

ol

OpenLayers for CommonJS module loaders.

Note: This is still a work in progress. Not yet ready for production.

Usage

Add the ol package as a dependency to your project.

npm install ol@beta --save

Import just what you need for your application:

import Map from 'ol/Map';
import View from 'ol/View';
import TileLayer from 'ol/layer/Tile';
import OSM from 'ol/source/OSM';

var map = new OLMap({
  target: 'map',
  layers: [
    new TileLayer({
      source: new OSM()
    })
  ],
  view: new View({
    center: [0, 0],
    zoom: 2
  })
});