All files / ground-overlay/src index.tsx

75% Statements 3/4
100% Branches 0/0
50% Functions 1/2
100% Lines 3/3

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 21                              1x   1x 1x    
/// <reference types="@uiw/react-baidu-map-types" />
import React, { useImperativeHandle } from 'react';
import { OverlayProps } from '@uiw/react-baidu-map-map';
import { useGroundOverlay } from './useGroundOverlay';
 
export * from './useGroundOverlay';
 
export interface GroundOverlayProps extends OverlayProps, BMap.GroundOverlayOptions, BMap.GroundOverlayEvents {
  /**
   * 设置矩形区域
   */
  bounds?: BMap.Bounds;
}
 
export default React.forwardRef<GroundOverlayProps, GroundOverlayProps>((props, ref) => {
  const { groundOverlay } = useGroundOverlay(props);
  // eslint-disable-next-line react-hooks/exhaustive-deps
  useImperativeHandle(ref, () => ({ ...props, groundOverlay }), [groundOverlay]);
  return null;
});