3.0.0 • Published 7 months 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
8 months ago
3.0.0-beta.8
8 months ago
3.0.0-beta.10
8 months ago
3.0.0
7 months ago
3.0.0-beta.5
9 months ago
3.0.0-beta.7
9 months ago
3.0.0-beta.6
9 months ago
3.0.0-beta.3
10 months ago
3.0.0-beta.4
10 months ago
3.0.0-beta.2
11 months ago