view.d.ts 666 B

12345678910111213141516171819202122232425
  1. /**
  2. * 查看定位 请求参数定义
  3. * @apiName biz.map.view
  4. */
  5. export interface IBizMapViewParams {
  6. /** 需要和longitude组合成合法经纬度,高德坐标 */
  7. latitude: number;
  8. /** 需要和latitude组合成合法经纬度,高德坐标 */
  9. longitude: number;
  10. /** 在地图锚点气泡显示的文案 */
  11. title: string;
  12. }
  13. /**
  14. * 查看定位 返回结果定义
  15. * @apiName biz.map.view
  16. */
  17. export interface IBizMapViewResult {
  18. }
  19. /**
  20. * 查看定位
  21. * @apiName biz.map.view
  22. * @supportVersion ios: 2.8.0 android: 2.8.0
  23. */
  24. export declare function view$(params: IBizMapViewParams): Promise<IBizMapViewResult>;
  25. export default view$;