geoblocks / ol-maplibre-layer

Use a MapBox map as an OpenLayers layer

Home Page:https://geoblocks.github.io/ol-maplibre-layer/demo.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MapLibre OpenLayers layer

Render a MapLibre GL JS map as an OpenLayers layer.

Installation

npm i @geoblocks/ol-maplibre-layer

OpenLayers and MapLibre GL JS are peer dependencies, so you need to install them too.

npm i ol maplibre-gl

Code example

import MapLibreLayer from '@geoblocks/ol-maplibre-layer';

const layer = new MapLibreLayer({
  opacity: 0.7,
  maplibreOptions: {
    style: 'https://www.example.com/path/to/style.json',
  },
});

// ...
map.addLayer(layer);

All the properties passed to the construction (except maplibreOptions) are used to create the OpenLayers layer. maplibreOptions is used to create the MapLibre map.

The MapLibreLayer exposes the underlying MapLibre map as public property, so you can use it to interact with the map.

layer.maplibreMap.setStyle('https://www.example.com/path/to/other/style.json');

Live examples

Basic example

About

Use a MapBox map as an OpenLayers layer

https://geoblocks.github.io/ol-maplibre-layer/demo.html

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:TypeScript 100.0%