SDKIntegration.vue 918 字节
Newer Older
杜庆泉's avatar
init  
杜庆泉 已提交
1 2
<template>
	<view>
杜庆泉's avatar
杜庆泉 已提交
3
		<page-head :title="title"></page-head>
杜庆泉's avatar
杜庆泉 已提交
4
		<view class="uni-btn-v uni-common-mt">
杜庆泉's avatar
杜庆泉 已提交
5 6
			<button type="primary"  @tap="checkLocationPermission">请求定位权限</button>
			<button type="primary"  @tap="testGetlocation">获取定位信息(需自定义基座)</button>
杜庆泉's avatar
杜庆泉 已提交
7
		</view>
杜庆泉's avatar
init  
杜庆泉 已提交
8 9 10 11
	</view>
</template>

<script>
杜庆泉's avatar
杜庆泉 已提交
12 13
	 import {requestPremission,getLocation} from "@/uni_modules/uts-tencentgeolocation";
	 
杜庆泉's avatar
init  
杜庆泉 已提交
14 15 16
	export default {
		data() {
			return {
杜庆泉's avatar
杜庆泉 已提交
17
				title: 'SDK集成示例',
杜庆泉's avatar
init  
杜庆泉 已提交
18 19 20
			}
		},
		methods: {
杜庆泉's avatar
杜庆泉 已提交
21 22
			
			checkLocationPermission:function(e){
杜庆泉's avatar
杜庆泉 已提交
23
				requestPremission();
杜庆泉's avatar
杜庆泉 已提交
24 25 26 27 28 29 30 31 32 33 34
			},
			testGetlocation:function(e){
				getLocation({
					onLocationChanged:function(locationName,locationAddress){
						var addressDesc = locationAddress + '-' + locationName
						uni.showToast({
							title:'执行结果:' + addressDesc,
							icon:'none'
						});
					}
				})
杜庆泉's avatar
杜庆泉 已提交
35
				
杜庆泉's avatar
杜庆泉 已提交
36
			},
杜庆泉's avatar
init  
杜庆泉 已提交
37 38 39 40 41 42 43
		}
	}
</script>

<style>

</style>