SDKIntegration.vue 1.9 KB
Newer Older
杜庆泉's avatar
init  
杜庆泉 已提交
1 2
<template>
	<view>
杜庆泉's avatar
杜庆泉 已提交
3
		<page-head :title="title"></page-head>
DCloud_Heavensoft's avatar
DCloud_Heavensoft 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
		<view class="uni-padding-wrap uni-common-mt">
			<view class="uni-hello-text">
				1. 腾讯定位sdk需在腾讯地图官网申请key。https://lbs.qq.com/mobile/androidMapSDK/
				developerGuide/getKey。
			</view>
			<view class="uni-hello-text">
				2. 将key配置在uts插件uts-tencentgeolocation/utssdk/app-android/AndroidManifest.xml中。
			</view>
			<view class="uni-hello-text">	
				3. 打包自定义基座,注意将uts-tencentgeolocation/utssdk/app-android/libs/androix-core-1.0.0.jar先移到其他目录。
			</view>
			<view class="uni-hello-text">	
				4. 打包自定义基座后将androix-core-1.0.0.jar移回原位,然后真机运行自定义基座。这个临时的移出移入问题后续会升级解决,详见uts插件开发文档的临时注意。
			</view>
		</view>
杜庆泉's avatar
杜庆泉 已提交
19
		<view class="uni-btn-v uni-common-mt">
杜庆泉's avatar
杜庆泉 已提交
20
			<button type="primary"  @tap="checkLocationPermission">请求定位权限</button>
杜庆泉's avatar
杜庆泉 已提交
21
			<button type="primary"  @tap="testGetlocation">腾讯地图获取定位(需自定义基座)</button>
杜庆泉's avatar
杜庆泉 已提交
22
		</view>
杜庆泉's avatar
init  
杜庆泉 已提交
23 24 25 26
	</view>
</template>

<script>
杜庆泉's avatar
杜庆泉 已提交
27 28
	 import {requestPremission,getLocation} from "@/uni_modules/uts-tencentgeolocation";
	 
杜庆泉's avatar
init  
杜庆泉 已提交
29 30 31
	export default {
		data() {
			return {
DCloud_Heavensoft's avatar
DCloud_Heavensoft 已提交
32
				title: '腾讯定位SDK集成示例',
杜庆泉's avatar
init  
杜庆泉 已提交
33 34 35
			}
		},
		methods: {
杜庆泉's avatar
杜庆泉 已提交
36 37
			
			checkLocationPermission:function(e){
杜庆泉's avatar
杜庆泉 已提交
38
				requestPremission();
杜庆泉's avatar
杜庆泉 已提交
39 40
			},
			testGetlocation:function(e){
41 42 43
				
				
				let startRet = getLocation({
杜庆泉's avatar
杜庆泉 已提交
44 45 46 47
					geocode:true,
					success:function(response){
						console.log(response);
						var addressDesc = response.name + '-' + response.address
杜庆泉's avatar
杜庆泉 已提交
48 49 50 51 52 53
						uni.showToast({
							title:'执行结果:' + addressDesc,
							icon:'none'
						});
					}
				})
杜庆泉's avatar
杜庆泉 已提交
54
				
55 56 57 58 59 60 61
				if(!startRet){
					uni.showToast({
						title:'定位启动失败,请检查配置',
						icon:'none'
					});
				}
				
杜庆泉's avatar
杜庆泉 已提交
62
			},
杜庆泉's avatar
init  
杜庆泉 已提交
63 64 65 66 67 68 69
		}
	}
</script>

<style>

</style>