The H3HexagonLayer
renders hexagons from the H3 geospatial indexing system.
H3HexagonLayer
is a CompositeLayer.
import DeckGL from '@deck.gl/react';
import {H3HexagonLayer} from '@deck.gl/geo-layers';
function App({data, viewState}) {
/**
* Data format:
* [
* {
* hex: '88283082b9fffff',
* count: 96
* },
* ...
* ]
*/
const layer = new H3HexagonLayer({
id: 'h3-hexagon-layer',
data,
pickable: true,
wireframe: false,
filled: true,
extruded: true,
elevationScale: 20,
getHexagon: d => d.hex,
getFillColor: d => [255, (1 - d.count / 500) * 255, 0],
getElevation: d => d.count
});
return <DeckGL viewState={viewState}
layers={[layer]}
getTooltip={({object}) => object && `${object.hex} count: ${object.count}`} />;
}
To install the dependencies from NPM:
npm install deck.gl
# or
npm install @deck.gl/core @deck.gl/layers @deck.gl/geo-layers
import {H3HexagonLayer} from '@deck.gl/geo-layers';
new H3HexagonLayer({});
To use pre-bundled scripts:
<script src="https://unpkg.com/h3-js"></script>
<script src="https://unpkg.com/deck.gl@^8.0.0/dist.min.js"></script>
<!-- or -->
<script src="https://unpkg.com/@deck.gl/core@^8.0.0/dist.min.js"></script>
<script src="https://unpkg.com/@deck.gl/layers@^8.0.0/dist.min.js"></script>
<script src="https://unpkg.com/@deck.gl/geo-layers@^8.0.0/dist.min.js"></script>
new deck.H3HexagonLayer({});
Note that h3-js
must be included before deck.gl
.
Inherits from all Base Layer, CompositeLayer, and PolygonLayer properties, plus the following:
highPrecision
(Boolean, optional)'auto'
Each hexagon in the H3 indexing system is slightly different in shape. To draw a large number of hexagons efficiently, the H3HexagonLayer
may choose to use instanced drawing by assuming that all hexagons within the current viewport have the same shape as the one at the center of the current viewport. The discrepancy is usually too small to be visible.
There are several cases in which high-precision mode is required. In these cases, H3HexagonLayer
may choose to switch to high-precision mode, where it trades performance for accuracy:
0
through res 5
). These cells have larger differences in shape, particularly when using a Mercator projection.Possible values:
'auto'
: The layer chooses the mode automatically. High-precision rendering is only used if an edge case is encountered in the data.true
: Always use high-precision rendering.false
: Always use instanced rendering, regardless of the characteristics of the data.coverage
(Number, optional) 1
Hexagon radius multiplier, between 0 - 1. When coverage
= 1, hexagon is rendered with actual size, by specifying a different value (between 0 and 1) hexagon can be scaled down.
getHexagon
(Function, optional)object => object.hexagon
Method called to retrieve the H3 hexagon index of each object. Note that all hexagons within one H3HexagonLayer
must use the same resolution.
The H3HexagonLayer
renders the following sublayers:
hexagon-cell-hifi
- On highPrecision
mode, rendered by SolidPolygonLayerhexagon-cell
- On non highPrecision
mode, rendered by ColumnLayer