本帖最后由 tinsea 于 2015-12-23 15:51 编辑
[JavaScript] 纯文本查看 复制代码
wx.config({
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: 'wx6d6da684b2xxxxxx', // 必填,企业号的唯一标识,此处填写企业号corpid
timestamp: '<%=hidTimestamp.Value%>', // 必填,生成签名的时间戳
nonceStr: '<%=hidNoncestr.Value %>', // 必填,生成签名的随机串
signature: '<%=hidsignature.Value %>',// 必填,签名,见附录1
jsApiList: [
'checkJsApi',
'getLocation',
'openLocation'
] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
});
wx.ready(function () { // 7 地理位置接口
// 7 地理位置接口 // 7.1 查看地理位置
document.querySelector('#openLocation').onclick = function () {
wx.openLocation({
latitude: 23.099994,
longitude: 113.324520,
name: 'TIT 创意园',
address: '广州市海珠区新港中路 397 号',
scale: 14,
infoUrl: 'http://weixin.qq.com'
});
};
// 7.2 获取当前地理位置
document.querySelector('#getLocation').onclick = function () {
wx.getLocation({
success: function (res) {
alert(JSON.stringify(res));
},
cancel: function (res) {
alert('用户拒绝授权获取地理位置');
}
});
};
}
[HTML] 纯文本查看 复制代码 <button id="checkJsApi">checkJsApi</button>
<button id="openLocation">在地图上查看位置</button>
<button id="getLocation">获取我的位置坐标</button>
代码用的就是官网DEMO改过来的,debug为ture, 提示配置也是成功的 config: ok。 openLocatio可以打开地图,getLocation一直不行,点了都没反应,有没有人碰到这个问题,求助下。
|