Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 1x 1x 1x 1x | /// <reference types="@uiw/react-baidu-map-types" /> import React, { useImperativeHandle, useEffect } from 'react'; import { OverlayProps } from '@uiw/react-baidu-map-map'; import { useTileLayer } from './useTileLayer'; export * from './useTileLayer'; export interface TileLayerProps extends OverlayProps, BMap.TileLayerOptions, BMap.TileLayer { visiable?: boolean; } export default React.forwardRef<TileLayerProps, TileLayerProps>((props, ref) => { const { tileLayer, setVisiable } = useTileLayer(props); // eslint-disable-next-line react-hooks/exhaustive-deps useImperativeHandle(ref, () => ({ ...props, tileLayer }), [tileLayer]); // eslint-disable-next-line react-hooks/exhaustive-deps useEffect(() => setVisiable(props.visiable!), [props.visiable]); return null; }); |