web-view 中,使用reverseGeocoder,没响应?
发布于 4 年前 作者 na33 1447 次浏览 来自 问答

qqmapsdk.reverseGeocoder({

 

                 “location”: “22.9649,113.3557”,

                 “success”: function (res) {

                     var result = res.result;

                     alert(“res”);

                     alert(JSON.stringify(result.pois));

 

                 },

                 “fail”: function () {

                     alert(“逆地址解析失败”);

                 },

                 “complete”: function () {

                     alert(“逆地址解析完成”);

                 }

             });

回到顶部