LayerConfigType
LayerConfigType =
"icon"|"point"|"path"|"polygon"|"raster"
Built-in layer types for Deck.gl visualization layers.
Remarks
Each type corresponds to a specific Deck.gl layer implementation:
'icon': MaskedIconLayer for point data with custom symbols from atlases'point': ScatterplotLayer for simple circular point visualization'path': PathLayer for line/polyline data representing routes, boundaries'polygon': PolygonLayer for filled area shapes representing regions, zones
Extension Support: Custom layer types can be added via ImplementationConfig.extension without modifying this core type definition.
See
- Deck.gl Layer Documentation
- ImplementationConfig - For registering custom layer types