文章目录
- 1.最终效果预览
- 2.坐标获取方法
- 3.在公共类中封装获取坐标的通用方法
- 4.插件js中封装startGeoLocation方法
- 5.插件主界面封装的方法
1.最终效果预览
2.坐标获取方法
let obj = Object.assign({}, this.mapConfig.mapLocationObj)obj.isKeepCallBack = falselet res = await this.utilsTools.getXYLocationDataByDeviceType(obj)
mapLocationObj值为配置文件封装的公共参数
public mapLocationObj = {packageName: 'com.xx.xxx',delayTime: 2000,intervalTime: 1000,rodHeight: '0.5',isKeepCallBack: false,paramKey: 'getKeepData'}
res中返回的数据即为获取到的坐标数据