A simple library that makes use of free available world-wide terrestris vectortiles in MapBox MVT format from OpenStreetMap data
npm install @terrestris/vectortilesThe main method getOSMLayer creates an openlayers VectorTile Layer, which you
can use straight in your openlayers application.
https://demo.terrestris.de/democlient/index.html
npm i @terrestris/vectortiles
Then, in your code, import as follows:
```
import terrestrisVectorTiles from '@terrestris/vectortiles';
Then you can create the OSM-VectorTile layer by calling
``
const layer = new terrestrisVectorTiles();`
or with custom configuration and style:``
const layer = new terrestrisVectorTiles({
declutter: false,
usePlacesLabels: false,
style_roads: [{
...
}]
});