TimelessLove
TimelessLove
  • 发布:2023-04-23 19:11
  • 更新:2023-04-23 21:53
  • 阅读:459

UNI-APP 开发微信公众号(H5),使用JSSDK的wx.openLocation无法使用

分类:uni-app
let bean = this.bean;  
                // #ifdef H5  
                var ua = window.navigator.userAgent.toLowerCase();  
                if (ua.match(/micromessenger/i) == 'micromessenger') {  
                    console.log('是微信客户端')  
                    jweixin.ready(function() {  
                        jweixin.openLocation({  
                            // 纬度,浮点数,范围为90 ~ -90  
                            latitude: bean.latitude,  
                            // 经度,浮点数,范围为180 ~ -180。  
                            longitude: bean.longitude,  
                            // 位置名  
                            name: bean.companyName,  
                            // 地址详情说明  
                            address: bean.address,  
                            // 地图缩放级别,整型值,范围从1~28。默认为最大  
                            scale: 12,  
                            // 在查看位置界面底部显示的超链接,可点击跳转  
                            infoUrl: ''  
                        });  
                    })  
                } else {  
                    console.log('不是微信客户端')  

                }  
                // #endif
2023-04-23 19:11 负责人:无 分享
已邀请:
不老刘

不老刘

用微信的JSAPI,得先初始化 配置好签名那些东西。自己搜一下

要回复问题请先登录注册