UNPKG

@map-component/react-tmap

Version:

基于腾讯地图JavaScript API GL、TypeScript 封装适用于 react 的高性能地图组件库

16 lines (15 loc) 486 B
/// <reference types="@map-component/tmap-types" /> import { FC } from 'react'; declare type MarkerClusterOptions = { id: string; enableDefaultStyle?: boolean; minimumClusterSize?: number; geometries?: TMap.PointGeometry[]; zoomOnClick?: boolean; gridSize?: number; averageCenter?: boolean; maxZoom?: number; [key: string]: any; }; declare const MarkerClusterComponent: FC<MarkerClusterOptions>; export default MarkerClusterComponent;