Interface LayerProps

interface LayerProps {
    api?: ItemsApi<Item>;
    children?: ReactNode;
    clusterRef?: any;
    customEditLink?: string;
    customEditParameter?: string;
    data?: Item[];
    id?: string;
    item_presets?: Record<string, unknown>;
    itemFormPopup?: null | ItemFormPopupProps;
    itemType: ItemType;
    listed?: boolean;
    markerDefaultColor: string;
    markerDefaultColor2?: string;
    markerIcon: string;
    markerShape: string;
    menuColor: string;
    menuIcon: string;
    menuText: string;
    name: string;
    public_edit_items?: boolean;
    setItemFormPopup?: Dispatch<SetStateAction<null | ItemFormPopupProps>>;
    userProfileLayer?: boolean;
}

Properties

api?: ItemsApi<Item>
children?: ReactNode
clusterRef?: any
customEditLink?: string
customEditParameter?: string
data?: Item[]
id?: string
item_presets?: Record<string, unknown>
itemFormPopup?: null | ItemFormPopupProps
itemType: ItemType
listed?: boolean
markerDefaultColor: string
markerDefaultColor2?: string
markerIcon: string
markerShape: string
menuColor: string
menuIcon: string
menuText: string
name: string
public_edit_items?: boolean
setItemFormPopup?: Dispatch<SetStateAction<null | ItemFormPopupProps>>
userProfileLayer?: boolean