You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
422 B
9 lines
422 B
2 years ago
|
import { createElementObject, createLayerComponent, extendContext } from '@react-leaflet/core';
|
||
|
import { LayerGroup as LeafletLayerGroup } from 'leaflet';
|
||
|
export const LayerGroup = createLayerComponent(function createLayerGroup({ children: _c , ...options }, ctx) {
|
||
|
const group = new LeafletLayerGroup([], options);
|
||
|
return createElementObject(group, extendContext(ctx, {
|
||
|
layerContainer: group
|
||
|
}));
|
||
|
});
|