import { Layer } from "react-map-gl"; import { getPointSymbolLayer } from "./layers-config"; import { useLayersVisibility } from "../../stores/useLayersVisibility"; import { LAYER_IDS } from "./constants"; export const PVZ = ({id, categoryId}) => { const { isVisible } = useLayersVisibility(); const filter = ["==", ["get", "group_id"], id] return ( <> ); };