微信公眾號 檢視地址

小山芋發表於2018-01-17

引入 jsSdk檔案:

<script src="${ctx}/static/js/foreman/jweixin-1.2.0.js"></script>
複製程式碼
$.ajax({
    type: 'get',
    url:  '請求地址',  //  獲取下面字元的請求地址
    dataType: 'json',
    success: function (ret) {
        if (ret.code == 0) {
            wx.config({
                debug: false, // 開啟除錯模式,呼叫的所有api的返回值會在客戶端alert出來,若要檢視傳入的引數,可以在pc端開啟,引數資訊會通過log打出,僅在pc端時才會列印。
                appId: ret.appId, // 必填,公眾號的唯一標識
                timestamp: ret.timestamp, // 必填,生成簽名的時間戳
                nonceStr: ret.nonceStr, // 必填,生成簽名的隨機串
                signature: ret.signature,// 必填,簽名,見附錄1
                jsApiList: ['checkJsApi',
                    'getNetworkType',//網路狀態介面
                    'openLocation',//使用微信內建地圖檢視地理位置介面
                    'getLocation' //獲取地理位置介面
                ] // 必填,需要使用的JS介面列表,所有JS介面列表見附錄2
            });
        } else {
            this.layerOpen("資料請求失敗");
        }
    }
});
複製程式碼

"檢視位置"

openLocations: function (addressUrl, longitude, latitude) 
  // 傳入經緯度和具體地址
	if (longitude == null || latitude == null) {
		alert("地址轉換失敗");
	} else {
		wx.openLocation({
			type: "gcj02",
			latitude: latitude,  //必填 維度
			longitude: longitude, //必填 經度
			name: addressUrl, 
			address: addressUrl,
			scale: 20,  
		});
	}
},
複製程式碼

相關文章