3.0.0 • Published 1 year ago
@sigma/layer-maplibre v3.0.0
Sigma.js - Maplibre background layer
This package contains a maplibre background layer for sigma.js.
It displays a map on the graph's background and handle the camera synchronisation.
How to use
First you need to install maplibre in your application.
You can check this page to see how to do it.
Especially, don't forget to load maplibre-gl.css in your application.
Then, within your application that uses sigma.js, you can use @sigma/layer-maplibre as following:
import bindLeafletLayer from "@sigma/layer-maplibre";
const graph = new Graph();
graph.addNode("nantes", { x: 0, y: 0, lat: 47.2308, lng: 1.5566, size: 10, label: "Nantes" });
graph.addNode("paris", { x: 0, y: 0, lat: 48.8567, lng: 2.351, size: 10, label: "Paris" });
graph.addEdge("nantes", "paris");
const sigma = new Sigma(graph, container);
bindMaplibreLayer(sigma);Please check the related Storybook for more advanced examples.
3.0.0-beta.9
1 year ago
3.0.0-beta.8
1 year ago
3.0.0-beta.10
1 year ago
3.0.0
1 year ago
3.0.0-beta.5
1 year ago
3.0.0-beta.7
1 year ago
3.0.0-beta.6
1 year ago
3.0.0-beta.3
1 year ago
3.0.0-beta.4
1 year ago
3.0.0-beta.2
2 years ago