zhizhi/node_modules/dingtalk-jsapi/api/biz/map/view.d.ts

26 lines
666 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 查看定位 请求参数定义
* @apiName biz.map.view
*/
export interface IBizMapViewParams {
/** 需要和longitude组合成合法经纬度高德坐标 */
latitude: number;
/** 需要和latitude组合成合法经纬度高德坐标 */
longitude: number;
/** 在地图锚点气泡显示的文案 */
title: string;
}
/**
* 查看定位 返回结果定义
* @apiName biz.map.view
*/
export interface IBizMapViewResult {
}
/**
* 查看定位
* @apiName biz.map.view
* @supportVersion ios: 2.8.0 android: 2.8.0
*/
export declare function view$(params: IBizMapViewParams): Promise<IBizMapViewResult>;
export default view$;