index.uts 5.3 KB
Newer Older
杜庆泉's avatar
杜庆泉 已提交
1
import {
2 3
    UTSAndroid
} from "io.dcloud.uts";
杜庆泉's avatar
杜庆泉 已提交
4 5 6 7 8 9 10

import ActivityCompat from "androidx.core.app.ActivityCompat";
import Manifest from "android.Manifest";
import Looper from "android.os.Looper";
import TencentLocationManager from "com.tencent.map.geolocation.TencentLocationManager";
import TencentLocationListener from "com.tencent.map.geolocation.TencentLocationListener";
import TencentLocation from "com.tencent.map.geolocation.TencentLocation";
杜庆泉's avatar
杜庆泉 已提交
11
import TencentLocationRequest from "com.tencent.map.geolocation.TencentLocationRequest";
12
import PackageManager from "android.content.pm.PackageManager";
13 14 15
import Class from 'java.lang.Class';
import Exception from 'java.lang.Exception';

杜庆泉's avatar
杜庆泉 已提交
16

杜庆泉's avatar
杜庆泉 已提交
17 18 19

export function requestPremission() {
	
20 21 22 23 24 25
	/**
	 * 同意隐私协议。重要!!
	 * 说明文档:https://lbs.qq.com/mobile/androidLocationSDK/androidGeoGuide/agreePrivacy
	 */
	TencentLocationManager.setUserAgreePrivacy(true);
	
杜庆泉's avatar
杜庆泉 已提交
26
	// 注册一个请求回调
27
	UTSAndroid.onAppActivityRequestPermissionsResult((requestCode: number,
杜庆泉's avatar
杜庆泉 已提交
28 29 30 31 32 33 34 35 36 37
                                                     permissions: MutableList<string>,
                                                     grantResults: MutableList<number>) => {
		/**
		 * 0 已同意
		 * -1 已拒绝
		 */
		console.log(grantResults);
		console.log(permissions);
		console.log(requestCode);
	});
杜庆泉's avatar
杜庆泉 已提交
38
	
39
	// 发起权限申请
杜庆泉's avatar
杜庆泉 已提交
40
	ActivityCompat.requestPermissions(
41
	            UTSAndroid.getUniActivity()!,
杜庆泉's avatar
杜庆泉 已提交
42
	            arrayOf(Manifest.permission.ACCESS_COARSE_LOCATION,Manifest.permission.ACCESS_FINE_LOCATION), 1001);
杜庆泉's avatar
杜庆泉 已提交
43 44 45 46 47 48
	
  // 请求权限
  return { name: "requestPremission"};
}


杜庆泉's avatar
杜庆泉 已提交
49 50 51
/**
 * 定位请求参数封装
 */
杜庆泉's avatar
杜庆泉 已提交
52
type LocationOptions = {
杜庆泉's avatar
杜庆泉 已提交
53 54
	geocode:boolean,
	success: (response:LocationResponse) => void;
杜庆泉's avatar
杜庆泉 已提交
55 56
};

杜庆泉's avatar
杜庆泉 已提交
57 58 59 60 61 62 63 64 65 66
/**
 * 定位返回结果封装
 */
type LocationResponse = {
	name?:string,
	address?:string,
	latitude?:number,
	longitude?:number
}

67 68 69 70

/**
 * 定位监听结果包装类
 */
杜庆泉's avatar
杜庆泉 已提交
71 72 73 74 75 76 77 78
class LocationOptionsWapper{
	
	hostOption:LocationOptions;
	
	constructor(option: LocationOptions){
		this.hostOption = option
	}
	
杜庆泉's avatar
杜庆泉 已提交
79 80
	onLocationChanged(location:TencentLocation , _error:Int ,
								  _reason:string){
杜庆泉's avatar
杜庆泉 已提交
81
		
82
		let response:LocationResponse = {
杜庆泉's avatar
杜庆泉 已提交
83 84 85 86 87
			name:location.name,
			address:location.address,
			latitude:location.latitude,
			longitude:location.longitude
		};
杜庆泉's avatar
杜庆泉 已提交
88
		this.hostOption.success(response);
杜庆泉's avatar
杜庆泉 已提交
89 90 91
	}
	
	
杜庆泉's avatar
杜庆泉 已提交
92
	onStatusUpdate(_name:string, _status:Int, _desc:string){
杜庆泉's avatar
杜庆泉 已提交
93
		// 定位状态发生变化
杜庆泉's avatar
杜庆泉 已提交
94 95 96 97
	}
};


杜庆泉's avatar
杜庆泉 已提交
98 99 100
/**
 * Tencent 定位监听实现类
 */
杜庆泉's avatar
杜庆泉 已提交
101 102
class SingleLocationListener extends TencentLocationListener {
    
杜庆泉's avatar
杜庆泉 已提交
103
	
杜庆泉's avatar
杜庆泉 已提交
104 105 106
	hostOptionWraper:LocationOptionsWapper;
	
	constructor(option: LocationOptionsWapper){
杜庆泉's avatar
杜庆泉 已提交
107
		super();
杜庆泉's avatar
杜庆泉 已提交
108
		this.hostOptionWraper = option
杜庆泉's avatar
杜庆泉 已提交
109 110
	}
	
杜庆泉's avatar
杜庆泉 已提交
111
	override onLocationChanged(location:TencentLocation , error:Int ,
杜庆泉's avatar
杜庆泉 已提交
112
								  reason:string ):void{
113 114
									  console.log(error);
									  console.log(reason);
115
		console.log(error);
杜庆泉's avatar
杜庆泉 已提交
116
		this.hostOptionWraper.onLocationChanged(location,error,reason);
杜庆泉's avatar
杜庆泉 已提交
117 118
	}

杜庆泉's avatar
杜庆泉 已提交
119
	override onStatusUpdate(name:string, status:Int, desc:string ):void{
杜庆泉's avatar
杜庆泉 已提交
120
		console.log(name);
杜庆泉's avatar
杜庆泉 已提交
121
		this.hostOptionWraper.onStatusUpdate(name,status,desc);
杜庆泉's avatar
杜庆泉 已提交
122
	}
杜庆泉's avatar
杜庆泉 已提交
123
	
杜庆泉's avatar
杜庆泉 已提交
124
}
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
/**
 * 判断当前的基座是否已经集成了sdk, 即是否是自定义基座
 */
export function checkHasIntegration():boolean{
	
	let hasIntegration =  true
	try{
		let xClass = Class.forName("com.tencent.map.geolocation.TencentLocationListener")
		console.log(xClass);
	}catch(e:Exception){
		hasIntegration = false;
	}
	
	if(!hasIntegration){
		return false;
	}
	
	return true
}
144 145 146 147 148
/**
 * 检查定位的相关配置是否正确
 */
function checkLocationConfig():boolean{
	
149 150
	let packageName = UTSAndroid.getAppContext()!.getPackageName();
	let appInfo = UTSAndroid.getAppContext()!.getPackageManager()!.getApplicationInfo(packageName,PackageManager.GET_META_DATA)
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
	
	let metaData = appInfo.metaData
	if (metaData == null) {
		 return false;
	}
	let adId = metaData.getString("TencentMapSDK")
	let splitArray = adId!.split("-")
	let keyCharNum = splitArray.size
	
	if(keyCharNum > 5){
		// 存在超过5个-,说明是符合规则的appkey
		return true;
	}
	// 不符合校验规则,打回
	return false;
}

杜庆泉's avatar
杜庆泉 已提交
168 169 170 171
/**
 * 腾讯地图获取定位信息
 * 参考文档:https://lbs.qq.com/mobile/androidLocationSDK/androidGeoGuide/androidGeoAdapt
 */
172
export function getLocation(locationOptions: LocationOptions):boolean {
杜庆泉's avatar
杜庆泉 已提交
173
	
174 175 176 177 178 179
   if(!checkLocationConfig()){
	   /**
		* 未通过配置预校验,通常是app key 配置错误
		*/
		return false
   }
180
  
181
  let mLocationManager = TencentLocationManager.getInstance(UTSAndroid.getAppContext());
杜庆泉's avatar
杜庆泉 已提交
182 183
  // 定位监听器封装
  let locationOptionWrapper = new LocationOptionsWapper(locationOptions);
杜庆泉's avatar
杜庆泉 已提交
184
  let mLocationListener = new SingleLocationListener(locationOptionWrapper);
杜庆泉's avatar
杜庆泉 已提交
185 186 187 188 189 190 191 192
  // 发起单次请求
  let locationRequest = TencentLocationRequest.create()
  // 是否需要逆地理编码
  if(locationOptions.geocode){
	  locationRequest.setRequestLevel(TencentLocationRequest.REQUEST_LEVEL_ADMIN_AREA);
  }else{
	  locationRequest.setRequestLevel(TencentLocationRequest.REQUEST_LEVEL_GEO);
  }
193
  
194 195
  console.log("requestSingleFreshLocation");
  
196 197
  mLocationManager.requestSingleFreshLocation(locationRequest, mLocationListener, Looper.getMainLooper());
  
198 199 200
  return true;
}

201 202 203
/**
 * 持续监听位置变化
 */
204
@Suppress("UNUSED_PARAMETER")
205 206 207
export function watchPosition(_locationOptions: LocationOptions) {
	//todo
}
208

209 210 211
/**
 * 关闭监听位置变化
 */
212
@Suppress("UNUSED_PARAMETER")
213 214 215
export function clearWatch() {
	//todo
}