To have the same path (starting with `ol/`, without `.js`) as in the documentation. The support was added in the webpack config in #8928
47 lines
1.0 KiB
JavaScript
47 lines
1.0 KiB
JavaScript
import Map from 'ol/Map';
|
|
import View from 'ol/View';
|
|
import TopoJSON from 'ol/format/TopoJSON';
|
|
import {Tile as TileLayer, Vector as VectorLayer} from 'ol/layer';
|
|
import TileJSON from 'ol/source/TileJSON';
|
|
import VectorSource from 'ol/source/Vector';
|
|
import {Fill, Stroke, Style} from 'ol/style';
|
|
|
|
|
|
const raster = new TileLayer({
|
|
source: new TileJSON({
|
|
url: 'https://api.tiles.mapbox.com/v3/mapbox.world-dark.json?secure'
|
|
})
|
|
});
|
|
|
|
const style = new Style({
|
|
fill: new Fill({
|
|
color: 'rgba(255, 255, 255, 0.6)'
|
|
}),
|
|
stroke: new Stroke({
|
|
color: '#319FD3',
|
|
width: 1
|
|
})
|
|
});
|
|
|
|
const vector = new VectorLayer({
|
|
source: new VectorSource({
|
|
url: 'data/topojson/world-110m.json',
|
|
format: new TopoJSON({
|
|
// don't want to render the full world polygon (stored as 'land' layer),
|
|
// which repeats all countries
|
|
layers: ['countries']
|
|
}),
|
|
overlaps: false
|
|
}),
|
|
style: style
|
|
});
|
|
|
|
const map = new Map({
|
|
layers: [raster, vector],
|
|
target: 'map',
|
|
view: new View({
|
|
center: [0, 0],
|
|
zoom: 1
|
|
})
|
|
});
|