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
463 B
9 lines
463 B
import { createElementObject, createPathComponent, extendContext } from '@react-leaflet/core'; |
|
import { FeatureGroup as LeafletFeatureGroup } from 'leaflet'; |
|
export const FeatureGroup = createPathComponent(function createFeatureGroup({ children: _c , ...options }, ctx) { |
|
const group = new LeafletFeatureGroup([], options); |
|
return createElementObject(group, extendContext(ctx, { |
|
layerContainer: group, |
|
overlayContainer: group |
|
})); |
|
});
|
|
|