/** * @author: xd * @date: Do not edit * @lastEditors: xd * @lastEditTime: Do not edit * @filePath: Do not edit * @description: * * Copyright (c) 2023 by xd, All Rights Reserved. */ /** * @author: xd * @Date: 2022-10-11 12:01:34 * @LastEditors: xd * @LastEditTime: 2022-10-22 13:40:00 * @FilePath: \Map2D\src\Tools\util\format.ts * @Description: * * Copyright (c) 2022 by xd, All Rights Reserved. */ export declare function ToDegree(degree?: number, minute?: number, second?: number, len?: number): string; export declare function ToDegreeMinuteSecond(val: number | string): { degree: number; minute: number; second: number; }; export declare function formatDistance(m: any): string; export declare function SecondToHHMMSS(value: any): string; /** * 参数拼接 * @param {object} obj 只支持非嵌套的对象 * @returns {string} * @author xd 2020-1-15 */ export declare function paramsToUrl(obj: any): string;