UNPKG

@map-component/react-tmap

Version:

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

11 lines (10 loc) 345 B
/// <reference types="@map-component/tmap-types" /> import { FC } from 'react'; declare type MultiMarkerOptions = { id: string; styles?: TMap.MultiMarkerStyleHash; geometries?: TMap.PointGeometry[]; [key: string]: any; }; declare const MultiMarkerComponent: FC<MultiMarkerOptions>; export default MultiMarkerComponent;