/** * 返回数据类型 */ export interface CenterPoint { name?: string; address?: string; lat?: number; lng?: number; city?: CityType; } /** * 行政区数据类型 */ export interface CityType { province: string; city: string; district: string; citycode: number; } /** * 坐标 */ export interface PoiLocation { lat: number; lng: number; } /** * POI 数据 */ export interface PoiItem { name: string; address: string; location: PoiLocation; selected?: boolean; id?: string; key?: string; district?: string; label?: string; value?: string; } /** * 国际化语言文件类型 */ export interface MapPickerLocale { title: string; placeholder: string; message: string; ok: string; }