# 引入

import { openLocationInMp, openLocationInH5 } from 't-comm';

// or

import { openLocationInMp, openLocationInH5} from 't-comm/lib/open-location/index';

# openLocationInMp(param)

描述

打开地图,查看位置

参数

参数名 描述
param

参数

返回:

查看Promise

示例

openLocationInMp({
  lat,
  lng,
  name,
  address,
});

# openLocationInH5(param)

描述

打开地图,查看位置

参数

参数名 描述
param

参数

返回:

查看Promise

示例

openLocationInH5({
  lat,
  lng,
  name,
  address,

  context: this,
  route: '/map'
});
Last Updated: 2024/10/11 07:54:02