/** * 返回数据 */ export interface CenterPoint { /** 名称 */ name?: string; /** 位置 */ address?: string; /** 纬度 */ lat?: number; /** 经度 */ lng?: number; /** 城市 */ city?: City; } /** * 行政区数据 */ export interface City { /** 省 */ province: string; /** 市 */ city: string; /** 区 */ district: string; /** 区号 */ citycode: number; } /** * 坐标 */ export interface PoiLocation { /** 纬度 */ lat: number; /** 经度 */ lng: number; } /** * 检索结果 */ export interface PoiItem { /** 地点名称 */ name?: string; /** 详细地址 */ address?: string; /** 经纬度坐标 */ location: PoiLocation; /** 数据唯一标识 */ id?: string; /** 输入建议唯一标识 */ key?: string; /** 输入建议的街道 */ district?: string; /** 输入建议显示的名称 */ label?: string; /** 输入建议显示的值 */ value?: string; } /** * 位置选择模式 */ export type SelectMode = 'lnglat' | 'poi' | 'keyword'; /** * 实例 */ export interface MapState { /** 上次搜索建议 */ lastSuggestion: string; /** 选中的搜索建议 */ selectedSuggestion: PoiItem | null; /** 是否是选中条目移动地图 */ isItemClickMove: boolean; /** 地图实例 */ mapIns: any; /** 检索实例 */ placeSearchIns: any; /** 搜索建议实例 */ autoCompleteIns: any; /** 地图标记点 */ centerMarker: any; } /** * 国际化 */ export interface MapLocale { title: string; placeholder: string; message: string; ok: string; clickMessage: string; }