作者 lihan

地图定位2.0

<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
... ... @@ -6,13 +6,25 @@
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<link rel="stylesheet" type="text/css" href="/themes/simplebootx/Portal/Template/css/swiper-3.4.2.min.css" />
<link rel="stylesheet" type="text/css" href="/themes/simplebootx/Portal/Template/css/init.css" />
<link rel="stylesheet" type="text/css" href="http://at.alicdn.com/t/font_647640_n3cow34ja3gzaor.css" />
<link rel="stylesheet" type="text/css" href="/themes/simplebootx/Portal/Template/css/myorder/paydetails.css" />
<script src="/themes/simplebootx/Portal/Template/js/base.js" type="text/javascript" charset="utf-8"></script>
<script src="http://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
<script src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
<title>订单详情待取货</title>
</head>
<script>
wx.config({
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: '{$sdk.appId}', // 必填,公众号的唯一标识
timestamp: '{$sdk.timestamp}', // 必填,生成签名的时间戳
nonceStr: '{$sdk.nonceStr}', // 必填,生成签名的随机串
signature: '{$sdk.signature}',// 必填,签名
jsApiList: [
'openLocation'
] // 必填,需要使用的JS接口列表
});
</script>
<body>
<div class="container" id="takedetail">
<!--遮罩-->
... ... @@ -102,24 +114,13 @@
}
</script>
<script>
wx.config({
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: '{$sdk.appId}', // 必填,公众号的唯一标识
timestamp: '{$sdk.timestamp}', // 必填,生成签名的时间戳
nonceStr: '{$sdk.nonceStr}', // 必填,生成签名的随机串
signature: '{$sdk.signature}',// 必填,签名
jsApiList: [
'openLocation'
] // 必填,需要使用的JS接口列表
});
function openLocation() {
wx.openLocation({
latitude: '{$spotInfo.lat}', // 纬度,浮点数,范围为90 ~ -90
longitude: '{$spotInfo.lng}', // 经度,浮点数,范围为180 ~ -180。
latitude: {$spotInfo.lat}, // 纬度,浮点数,范围为90 ~ -90
longitude: {$spotInfo.lng}, // 经度,浮点数,范围为180 ~ -180。
name: '{$spotInfo.spot_name}', // 位置名
address: '{$spotInfo.address}', // 地址详情说明
scale: 1, // 地图缩放级别,整形值,范围从1~28。默认为最大
scale: 16, // 地图缩放级别,整形值,范围从1~28。默认为最大
infoUrl: '' // 在查看位置界面底部显示的超链接,可点击跳转
});
}
... ...