observable-framework-lib-deckgl

Installation
SKILL.md

Library: Deck.gl

Observable Framework documentation: Library: Deck.gl Source: https://observablehq.com/framework/lib-deckgl

deck.gl is a “GPU-powered framework for visual exploratory data analysis of large datasets.” You can import deck.gl’s standalone bundle like so:

import deck from "npm:deck.gl";

You can then refer to deck.gl’s various components such as deck.DeckGL or deck.HexagonLayer. Or for more concise references, you can destructure these symbols into top-level variables:

const {DeckGL, AmbientLight, GeoJsonLayer, HexagonLayer, LightingEffect, PointLight} = deck;

The example below is adapted from the documentation.

Related skills
Installs
11
First Seen
Feb 28, 2026