/* * @author wuweiru * @date 2020/12/16 */ export type MapRecodingResponseType = { location: number[]; direction?: string; businessArea?: string; distance?: string; name?: string; address?: string; type?: string; phone?: string; city?: string; province?: string; }; export type MapPoiSearchResponseType = { name?: string; type?: string; direction?: string; typeCode?: string; address?: string; location: number[]; phone?: string; postCode?: string; distance?: string; cityCode?: string; city?: string; province?: string; };