Simplify import path in examples

To have the same path (starting with `ol/`, without `.js`) as in the documentation.
The support was added in the webpack config in #8928
This commit is contained in:
Frederic Junod
2018-11-26 15:47:08 +01:00
parent 4b784f06e9
commit 79c8afdba8
165 changed files with 990 additions and 990 deletions

View File

@@ -1,9 +1,9 @@
import Map from '../src/ol/Map.js';
import View from '../src/ol/View.js';
import {Image as ImageLayer, Tile as TileLayer} from '../src/ol/layer.js';
import {fromLonLat} from '../src/ol/proj.js';
import {Raster as RasterSource, TileJSON} from '../src/ol/source.js';
import XYZ from '../src/ol/source/XYZ.js';
import Map from 'ol/Map';
import View from 'ol/View';
import {Image as ImageLayer, Tile as TileLayer} from 'ol/layer';
import {fromLonLat} from 'ol/proj';
import {Raster as RasterSource, TileJSON} from 'ol/source';
import XYZ from 'ol/source/XYZ';
function flood(pixels, data) {
const pixel = pixels[0];