@wufengteam/wform
Version:
@wufengteam/wform
19 lines (18 loc) • 530 B
TypeScript
import type { FC } from 'react';
import type { Poi } from './libs/Map';
export interface LocationComponentProps {
value?: Poi;
onChange?: (value?: any) => void;
fieldAttr?: string[];
showMap?: boolean;
showLngLat?: boolean;
locationRange?: 'current' | 'unlimit';
radius?: number;
platform?: 'h5' | 'pc';
disabled?: boolean;
$$componentItem?: any;
getEngineApis?: any;
activeKey?: any;
}
declare const LocationComponent: FC<LocationComponentProps>;
export default LocationComponent;