自学内容网 自学内容网

uniapp 安卓GPS定位原生插件

插件介绍

安卓GPS定位插件,支持获取定位权限,获取上一次的定位信息,持续定位监听,取消定位监听,可返回详细街道信息

插件地址

安卓GPS定位插件,支持持续定位监听,支持返回详细街道信息 - DCloud 插件市场

超级福利

uniapp 插件购买超级福利

详细使用文档

uniapp 安卓GPS定位原生插件

用法

在需要使用插件的页面加载以下代码

const module = uni.requireNativePlugin("leven-gps-GpsModule");

页面内容

<template>
  <view>
    <uni-card title="安卓GPS定位原生插件">
      <button type="primary" @click="openLocationPermission">开启定位权限</button>
      <button type="primary" @click="getLastLocation">获取上一次定位信息</button>
      <button type="primary" @click="locationListener">定位监听</button>
      <button type="primary" @click="cancelLocationListener">取消定位监听</button>
    </uni-card>
  </view>
</template>

<script>
  const module = uni.requireNativePlugin("leven-gps-GpsModule");
  export default {
    data() {
      return {

      }
    },
    methods: {
      //开启定位权限
      openLocationPermission() {
        module.openLocationPermission(res => {
          console.log(res)
        });
      },
      // 获取上一次定位信息
      getLastLocation() {
        module.getLastLocation(res => {
          console.log(res)
        });
      },
      //监听定位
      locationListener() {
        module.locationListener({
          minTime: 0, //最小时间间隔,单位:毫秒
          minDistance: 0, //最小距离间隔,单位:米
        }, res => {
          console.log(res)
        });
      },
      // 存储权限
      cancelLocationListener() {
        module.cancelLocationListener(res => {
          console.log(res)
        });
      },
    }
  }
</script>

<style>

</style>

插件方法

  • 开启定位权限
  • 获取上一次定位信息
  • 定位监听
  • 取消定位监听
  • 打开GPS设置页面
  • 判断GPS是否开启

具体方法的使用请参考使用说明文档 

联系作者

购买插件前请先试用,试用通过再购买。在试用中如果遇到任何问题,可与作者联系,QQ:334106817,将全力协助你使用本插件 

预览图片


原文地址:https://blog.csdn.net/lw0911/article/details/136319102

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!