3

我正在尝试调用 Google Maps 地理编码 API,以从 lat/long 对中获取格式化地址,然后将其记录到控制台。我正在尝试获取为给定位置返回的第一个“formatted_address”项目。我很简单无法从 JSON 中提取该项目,我不知道为什么。提取数据所需的代码行将不胜感激。

的JavaScript:

//Gets the current location of the user
function getLocation()
{
    if (navigator.geolocation)
    {
        navigator.geolocation.getCurrentPosition(showPosition);
    }

}

function showPosition(position)
{
    var latitude = position.coords.latitude;
    var longitude = position.coords.longitude;

    $.ajax({
        type: "POST",
        url: "ReportIncident.aspx/ReverseGeocode",
        data: "{latitude:" + latitude + ",longitude:" + longitude + "}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function (returnedData)
        {
         // console.log(/****formatted_address Here Please****/);
        }
    });
}

C#:

        [WebMethod]
        public static string ReverseGeocode(decimal latitude, decimal longitude)
        {
            // Create the web request  

            string url = "http://maps.googleapis.com/maps/api/geocode/json?latlng=" + latitude + "," + longitude +
                         "&sensor=true";
            HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;

            // Get response  
            using (HttpWebResponse response = request.GetResponse() as HttpWebResponse)
            {
                // Get the response stream  
                StreamReader reader = new StreamReader(response.GetResponseStream());

                // Console application output  
                return reader.ReadToEnd();
            }
        }
4

2 回答 2

2

你的 JSON 被转义,因为你从你的返回一个字符串WebMethod,而不是让内置JavascriptSerializer的东西去做。

粗略地说,您会看到:

"\{ /*data*/ \}"

而不是这个:

{ /*data*/ }

您可以通过运行返回的字符串来解决此问题,eval()但请注意我不推荐它......只是说你可以

编辑

 $.ajax({
    type: "POST",
    url: "ReportIncident.aspx/ReverseGeocode",
    data: "{latitude:" + latitude + ",longitude:" + longitude + "}",
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success: function (returnedData)
    {
        var realReturnedData = eval(returnedData.d);
        //realReturnedData now has the google maps data structure you're expecting
    }
});

再次...... eval 是邪恶的(如果你不 100% 信任来源)。我建议从您的网络方法返回不同的数据类型...

编辑 2

[WebMethod]
public static MyClass ReverseGeocode(decimal lat, decimal long) {
   MyClass obj = new MyClass();
   //do stuff
   return obj;
}

但我真正的问题是,您为什么要通过对服务器的 Web 服务调用来执行此操作?您可以直接从 Javascript 到 google 的 API 进行地理编码https://google-developers.appspot.com/maps/documentation/javascript/examples/geocoding-reverse

于 2012-07-03T16:01:00.243 回答
0

我认为 API 返回如下内容:

{
    "results" : [
    {
        "address_components" : [/***/],
        "formatted_address": "..."
        /* other */
    }],
    "status" : "OK"
}

你可以试试:

if(returnedData.results.length > 0) {
    console.log(returnedData.results[0].formatted_address);
}

编辑:查看 API 文档https://developers.google.com/maps/documentation/geocoding/

于 2012-07-03T15:50:03.213 回答