微信-jssdk实现定位功能

使用上一篇进行基础配置,测试公众号的申请,jssdk的引入,configz的初始化

通过jssdk获取经纬度,调用高德接口根据经纬度获取地址信息

	function configInfo() {
		var apiList = ["getLocation"];
		//获取wx jsdk信息
		var url = "url=" + location.href.split('#')[0];
		$.ajax({
			url: "../../wechat/getWXSign",
			type: "POST",
			data: url,
			dataType: "json",
			success: function (result) {
				console.log("微信鉴权参数==>");
				console.log(result.map);
				if (result.code == "success") {
					wx.config({
						debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
						appId: result.map.appId, // 必填,公众号的唯一标识
						timestamp: result.map.timestamp, // 必填,生成签名的时间戳
						nonceStr: result.map.nonceStr, // 必填,生成签名的随机串
						signature: result.map.signature,// 必填,签名
						jsApiList: apiList
						// 必填,需要

你可能感兴趣的:(微信,微信,微信定位,微信获取经纬度)