当前位置: 首页 > 工具软件 > EasyWeChat > 使用案例 >

tp6+easywechat6 jssdk(地图接口应用)

东郭承业
2023-12-01
<script>
    wx.config({
        debug:false, // 开启调试模式
        appId: '{$appId}', // 必填,公众号的唯一标识
        timestamp: {$timestamp}, // 必填,生成签名的时间戳
        nonceStr: '{$nonceStr}', // 必填,生成签名的随机串
        signature: '{$signature}',// 必填,签名
        jsApiList: ['getLocation','openLocation'] // 必填,需要使用的 JS 接口列表
    });

        wx.getLocation({
          type: 'gcj02', // 默认为wgs84的 gps 坐标,如果要返回直接给 openLocation 用的火星坐标,可传入'gcj02'
          success: function (res) {
            var latitude = res.latitude; // 纬度,浮点数,范围为90 ~ -90
            var longitude = res.longitude; // 经度,浮点数,范围为180 ~ -180。
            var speed = res.speed; // 速度,以米/每秒计
            var accuracy = res.accuracy; // 位置精度
            //alert('维度:'+latitude+',经度:'+longitude);
            wx.openLocation({
              latitude: latitude, // 纬度,浮点数,范围为90 ~ -90
              longitude: longitude, // 经度,浮点数,范围为180 ~ -180。
              name: '会展中心', // 位置名
              address: '郑州市金水区金水路6号', // 地址详情说明
              scale: 17, // 地图缩放级别,整型值,范围从1~28。默认为最大
              infoUrl: '' // 在查看位置界面底部显示的超链接,可点击跳转
            });
          }
        });
    });
</script>

后端jssdk.php

namespace app\controller;

use EasyWeChat\OfficialAccount\Application; //引入officialAccount应用

use think\facade\View;

class OfficialAccount
{
    private $config = [
        'app_id'  => '您的appID',
        'secret'  => '您的secret',
        'token'   => '您的token',
        'aes_key' => '' //明文模式下,为空即可
    ];

    public function index(){
        
        $app = new Application($this->config);

        $utils = $app->getUtils(); //使用工具方法

        $config = $utils->buildJsSdkConfig(
            url:'http://www.tp6.com/应用/控制器/方法名/', //当前页面的URL
            jsApiList: ['updateAppMessageShareData'],
            openTagList: [],
            debug:true, 
        );
        return View::fetch('officialaccount/index',[
            'appId'=>$config['appId'],
            'timestamp'=>$config['timestamp'],
            'nonceStr'=>$config['nonceStr'],
            'signature'=>$config['signature'],
        ]);
    }
}

前提条件:利用composer安装easywechat,安装后在root\vendor\下,只需在控制类文件中,直接引入即可

 类似资料: