腾讯地图逆地址解析(坐标位置描述)

wx.getLocation({
    type: 'wgs84', // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02'
    success: function (res) {
        var latitude = res.latitude; // 纬度,浮点数,范围为90 ~ -90
        var longitude = res.longitude; // 经度,浮点数,范围为180 ~ -180。
        //由经纬度反解城市信息
        $.ajax({
            url: "https://apis.map.qq.com/ws/geocoder/v1/",
            type: "get",
            dataType: 'jsonp',
            data: {
                location: latitude + "," + longitude,
                key: "OB4BZ-D4W3U-B7VVO-4PJWW-6TKDJ-WPB77",
                output: "jsonp"
            },
            success: function (res) {
                console.log(res);
            }
        });
    }
});

你可能感兴趣的:(微信小程序)