get-location.uvue 3.8 KB
Newer Older
杜庆泉's avatar
杜庆泉 已提交
1
<template>
杜庆泉's avatar
杜庆泉 已提交
2 3
  <view>
    <page-head :title="title"></page-head>
W
微调  
wanganxp 已提交
4 5 6 7 8
    <view style="padding: 4px;">
    	<text class="hello-text">
        真机运行标准基座仅包含系统定位,即system。\n
        部分手机因gms兼容不好可能导致无法定位。\n
        gcj国标、逆地理信息等功能需三方sdk定位。如果需要类似能力可以下载腾讯定位插件,打包自定义基座。参考示例:</text>
杜庆泉's avatar
杜庆泉 已提交
9
    	<u-link :href="'https://ext.dcloud.net.cn/plugin?id=14569'" :text="'https://ext.dcloud.net.cn/plugin?id=14569'" :inWhiteList="true"></u-link>
杜庆泉's avatar
杜庆泉 已提交
10 11
    </view>

杜庆泉's avatar
杜庆泉 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
    <view class="uni-padding-wrap uni-common-mt">
      <view class="uni-list">
        <radio-group @change="radioChange">
          <radio class="uni-list-cell uni-list-cell-pd" v-for="(item, index) in items" :key="item.value"
            :class="index < items.length - 1 ? 'uni-list-cell-line': ''" :value="item.value"
            :checked="index === current">
            {{item.name}}
          </radio>
        </radio-group>
      </view>
      <view class="uni-list-cell uni-list-cell-pd">
        <view class="uni-list-cell-db">高度信息</view>
        <switch :checked="altitudeSelect" @change="altitudeChange" />
      </view>
      <view class="uni-list-cell uni-list-cell-pd">
        <view class="uni-list-cell-db">开启高精度定位</view>
        <switch :checked="isHighAccuracySelect" @change="highAccuracySelectChange" />
      </view>
      <view class="uni-list-cell uni-list-cell-pd">
        <view class="uni-list-cell-db">是否解析地址信息</view>
        <switch :checked="geocodeSelect" @change="geocodeChange" />
      </view>
      <text>{{exeRet}}</text>
      <view class="uni-btn-v">
        <button class="uni-btn" type="default" @tap="getLocationTap">获取定位</button>
      </view>
杜庆泉's avatar
杜庆泉 已提交
38
    </view>
杜庆泉's avatar
杜庆泉 已提交
39
  </view>
杜庆泉's avatar
杜庆泉 已提交
40
</template>
Y
yurj26 已提交
41
<script lang="uts">
杜庆泉's avatar
杜庆泉 已提交
42 43 44 45 46 47 48 49 50 51 52 53
  type ItemType = {
    value : string,
    name : string,
  }
  export default {
    data() {
      return {
        title: 'get-location',
        altitudeSelect: false,
        isHighAccuracySelect: false,
        geocodeSelect: false,
        exeRet: '',
杜庆泉's avatar
杜庆泉 已提交
54
        items: [
杜庆泉's avatar
杜庆泉 已提交
55 56 57
        {
          value: 'wgs84',
          name: 'wgs84'
杜庆泉's avatar
杜庆泉 已提交
58 59 60 61
        },
        {
          value: 'gcj02',
          name: 'gcj02'
杜庆泉's avatar
杜庆泉 已提交
62
        }
杜庆泉's avatar
杜庆泉 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
        ] as ItemType[],
        current: 0,
      }
    },
    methods: {
      altitudeChange: function (e : SwitchChangeEvent) {
        this.altitudeSelect = e.detail.value
      },
      geocodeChange: function (e : SwitchChangeEvent) {
        this.geocodeSelect = e.detail.value
      },
      highAccuracySelectChange: function (e : SwitchChangeEvent) {
        this.isHighAccuracySelect = e.detail.value
      },
      radioChange(e : RadioGroupChangeEvent) {
        for (let i = 0; i < this.items.length; i++) {
          if (this.items[i].value === e.detail.value) {
            this.current = i;
            break;
          }
        }
      },
      getLocationTap: function () {
        uni.showLoading({
          title: '定位中'
        })
        uni.getLocation(({
          type: this.items[this.current].value,
          altitude: this.altitudeSelect,
          isHighAccuracy: this.isHighAccuracySelect,
          geocode: this.geocodeSelect,
          success: function (res : any) {
            uni.hideLoading()
            console.log(res);
            this.exeRet = JSON.stringify(res)
          },
          fail: function (res : any) {
            uni.hideLoading()
            console.log(res);
            this.exeRet = JSON.stringify(res)
          },
          complete: function (res : any) {
            uni.hideLoading()
            console.log(res);
            this.exeRet = JSON.stringify(res)
          }
        }));


      }

杜庆泉's avatar
杜庆泉 已提交
114
    }
杜庆泉's avatar
杜庆泉 已提交
115 116
  }
</script>
杜庆泉's avatar
杜庆泉 已提交
117 118 119
<style>
@import '@/common/uni-uvue.css';
</style>