| 1234567891011121314151617 |
- import { AMapTipsResponse } from "./types";
- /**
- * 修改高德地图 js-key
- * @param key JS-API key
- * @param serviceHost 安全密钥地址
- */
- export declare const setAmapJSKey: (key: string, serviceHost?: string) => void;
- /**
- * 提供根据用户输入的关键词查询返回建议列表
- * @link https://lbs.amap.com/api/webservice/guide/api/inputtips
- * @param value
- * @param city 搜索城市
- * @param citylimit 是否限制城市搜索 默认-true
- * @returns
- */
- export declare const getAmapInputTips: (path: string, value: string, city?: string | number, citylimit?: "true" | "false") => Promise<AMapTipsResponse>;
- //# sourceMappingURL=utils.d.ts.map
|