You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
672 B
22 lines
672 B
/// <reference types="react" /> |
|
interface Props { |
|
data: Array<any>; |
|
icon?: any; |
|
clusterIcon?: any; |
|
options?: any; |
|
onMarker?: (extData: any) => void; |
|
onCluster?: (extData: any, callback: (data: any) => void) => void; |
|
district?: boolean; |
|
isHeatMap?: boolean; |
|
isMapStyle?: boolean; |
|
isZoomMap?: boolean; |
|
circle?: boolean; |
|
adcode?: string | number; |
|
polygonOptions?: any; |
|
loadedCallBack?: any; |
|
distance?: number; |
|
isCluster?: boolean; |
|
renderInfoContent?: (data: any) => any; |
|
} |
|
export declare const MapMarker: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<unknown>>; |
|
export {};
|
|
|