从gmaps获取并使用jquery解析JSON以查找坐标

时间:2010-05-06 08:33:04

标签: jquery json google-maps

我想像这样解析一个json http://maps.google.com/maps/api/geocode/json?address=milano&sensor=false 只找到地址的纬度和经度(在这种情况下是米兰)。

谁能帮帮我?非常感谢提前:))

1 个答案:

答案 0 :(得分:2)

快速而肮脏的方式:

$.getJSON('http://maps.google.com/maps/api/geocode/json?address=milano&sensor=false',function(data) {
    var location = data.results[0].geometry.location;
    // coordinates are location.lat and location.lng
});

这将获取第一个结果的坐标。它可能不是您正在寻找的结果,但迭代结果以找到正确的结果是微不足道的。