获取地理位置

注: 在weex端,接入chameleon客户端sdk之后才可以使用该方法

getLocationInfo

参数

返回值

参数类型说明
lngNumber经度
latNumber纬度

举例

  1. cml.getLocationInfo().then(res => {
  2. // res: { lng[number]: 40.33, lat[number]: 154.33 }
  3. cml.showToast({
  4. message: JSON.stringify(res),
  5. duration: 2000
  6. })
  7. })