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.
8 lines
422 B
8 lines
422 B
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 |
|
})); |
|
});
|
|
|