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

26 lines
666 B
TypeScript
Raw Normal View History

/**
*
* @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$;