JS代码:
<script>
wx.config({
debug:true, // 开启调试模式
appId:’@Model[“appId”]’, // 公众号的唯一标识
timestamp:’@Model[“timestamp”]’, // 生成签名的时间戳
nonceStr:’@Model[“nonceStr”]’, // 生成签名的随机串
signature:’@Model[“signature”]’,// 签名
jsApiList: [‘chooseImage’, ‘uploadImage’, ‘downloadImage’,
‘previewImage’, ‘openLocation’, ‘getLocation’,
‘scanQRCode’, ‘checkJsApi’, ‘onMenuShareTimeline’,
‘onMenuShareAppMessage’, ‘onMenuShareQQ’,
‘onMenuShareWeibo’, ‘onMenuShareQZone’]// 这里先声明我们要用到打开地图的JS接口
});
wx.error(function (res) {
alert(res.errMsg);
});
wx.ready(function () {
wx.openLocation({
latitude: Number(@ViewBag.latitude), // 纬度,浮点数,范围为90 ~ -90
longitude: Number(@ViewBag.longitude), // 经度,浮点数,范围为180 ~ -180
name:’@ViewBag.location’, // 位置名
address:‘招聘会地址’, // 地址详情说明
scale:25, // 地图缩放级别,整形值,范围从1~28。默认为最大
infoUrl:'http://www.baidu.com’ // 在查看位置界面底部显示的超链接,可点击跳转
});
});
</script>
值都有,但是不知道为什么就是执行不出来