实训DAY07
//騰訊地圖key
? ? qqmapsdk = new QQMapWX({
? ? ? key: 'X24BZ-PTFK4-I7UU6-XAB6B-7SYKO-3FBPC'
? ? });
? ? //獲取經度,圍堵
? ? wx.getLocation({
? ? ? success: function (res) {
? ? ? ? _this.setData({
? ? ? ? ? location: {
? ? ? ? ? ? latitude: res.latitude,
? ? ? ? ? ? longitude: res.longitude
? ? ? ? ? },
? ? ? ? })
? ? ? }
? ? })
? ? // 調用接口,逆向解析,獲取城市
? ? qqmapsdk.reverseGeocoder({
? ? ? success: function (res) {//成功后的回調
? ? ? ? _this.setData({
? ? ? ? ? city: res.result.address.substr(6, 2)
? ? ? ? })
? ? ? ? _this.getWeather(_this.data.city);
? ? ? }
? ? })
總結